This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import random | |
from opentelemetry import metrics | |
from opentelemetry.sdk.metrics import MeterProvider | |
from opentelemetry.exporter.otlp.proto.http.\ | |
metric_exporter import OTLPMetricExporter | |
from opentelemetry.sdk.metrics.export import PeriodicExportingMetricReader | |
from opentelemetry.sdk.resources import SERVICE_NAME, Resource |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TEST 1/1 [C:\Users\anbelski\dws\phpdev\php74\vc15\x64\php-src\sapi\cli\tests\bug44564.phpt] | |
========DIFF======== | |
001+ string(13) "f^{o^}^<€^>" | |
002+ string(10) ""f~|;*Þ?"" | |
003+ string(13) "^?€®đæ^?" | |
004+ string(10) ""aŊł€"" | |
001- string(13) "f\{o\}\<€\>" | |
002- string(10) "'f~|;*Þ?'" | |
003- string(13) "\?€®đæ\?" | |
004- string(10) "'aŊł€'" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c | |
index 87483417eb..b75e4a900c 100644 | |
--- a/ext/phar/phar_object.c | |
+++ b/ext/phar/phar_object.c | |
@@ -447,6 +447,11 @@ PHP_METHOD(Phar, mount) | |
fname_len = strlen(fname); | |
#ifdef PHP_WIN32 | |
+ char cur_fname[PHP_WIN32_IOUTIL_MAXPATHLEN]; | |
+ fname_len = PHP_WIN32_IOUTIL_MAXPATHLEN - 1 < fname_len ? PHP_WIN32_IOUTIL_MAXPATHLEN - 1 : fname_len; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/ext/opcache/ZendAccelerator.c | |
+++ b/ext/opcache/ZendAccelerator.c | |
@@ -305,7 +305,9 @@ static inline int accel_restart_is_active(void) | |
static inline int accel_activate_add(void) | |
{ | |
#ifdef ZEND_WIN32 | |
+ SHM_UNPROTECT(); | |
INCREMENT(mem_usage); | |
+ SHM_PROTECT(); | |
#else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
error_reporting(E_ALL); | |
set_time_limit(0); | |
ob_implicit_flush(); | |
$is_master_proc = !isset($argv[1]) || !$argv[1]; | |
if ($is_master_proc) { | |
$address = 'localhost'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.xml.parsers.DocumentBuilder; | |
import javax.xml.parsers.DocumentBuilderFactory; | |
import javax.xml.transform.Transformer; | |
import javax.xml.transform.TransformerFactory; | |
import javax.xml.transform.dom.DOMSource; | |
import javax.xml.transform.stream.StreamResult; | |
import org.w3c.dom.Document; | |
import org.w3c.dom.Element; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Based on lexertl/iterator.hpp | |
#ifndef PARLE_LEXER_ITERATOR_HPP | |
#define PARLE_LEXER_ITERATOR_HPP | |
#include <iterator> | |
#include "lexertl/lookup.hpp" | |
#undef lookup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file.c: | |
#define f(a) ((a)>0)?1:0 | |
#define p(...) ,##__VA_ARGS__ | |
#define b(a,...) f(test(a p(__VA_ARGS__))) | |
int | |
main(int argc, char **argv) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c | |
index 394819cf34..d57002a592 100644 | |
--- a/ext/zip/php_zip.c | |
+++ b/ext/zip/php_zip.c | |
@@ -138,7 +138,8 @@ static int php_zip_extract_file(struct zip * za, char *dest, char *file, int fil | |
struct zip_file *zf; | |
struct zip_stat sb; | |
char b[8192]; | |
- int n, len, ret; | |
+ zip_int64_t n; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <zip.h> | |
int | |
main(int argc, char **argv) | |
{ | |
int err; | |
struct zip *z = zip_open("test_procedural.zip", 0, &err); |
NewerOlder