- Sort Score
- Num 10 results
- Language All
Results 481 - 490 of 1,478 for x$ (0.02 seconds)
-
ci/official/requirements_updater/requirements.in
keras-nightly ~= 3.12.0.dev tb-nightly ~= 2.20.0.a # For new protobuf, if V.x.y is gencode version, then runtime version U must be # V <= U <= V+1 # More info at https://protobuf.dev/support/cross-version-runtime-guarantee/ protobuf >= 5.28.0, < 7.0 # Test dependencies grpcio >= 1.68.1, < 2.0 ; python_version <= "3.13" grpcio >= 1.78.0 ; python_version == "3.14" portpicker == 1.6.0 # Scipy 15.x and above have misc.derivative removed, but we still use it
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Tue Mar 10 13:31:27 GMT 2026 - 1.5K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+branch-protection.yml
description: Elasticsearch %BRANCH% branch protection. node: master triggers: - timed: "H 7 * * *" scm: [] parameters: [] builders: - shell: | #!/bin/bash set +x STATUS=$(curl -s https://api.github.com/repos/elastic/elasticsearch/branches/%BRANCH% | jq '.protected') echo "Branch %BRANCH% protection status is: $STATUS" if [[ "$STATUS" == "false" ]]; thenCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 715 bytes - Click Count (0) -
buildscripts/disable-root.sh
#!/bin/bash set -x export MINIO_CI_CD=1 killall -9 minio rm -rf ${HOME}/tmp/dist scheme="http" nr_servers=4 addr="localhost" args="" for ((i = 0; i < $((nr_servers)); i++)); do args="$args $scheme://$addr:$((9100 + i))/${HOME}/tmp/dist/path1/$i" done echo $args for ((i = 0; i < $((nr_servers)); i++)); do (minio server --address ":$((9100 + i))" $args 2>&1 >/tmp/log$i.txt) & done sleep 10sCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 22 23:07:14 GMT 2024 - 3.5K bytes - Click Count (0) -
scripts/test-cov-html.sh
#!/usr/bin/env bash set -e set -x
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 27 10:53:47 GMT 2026 - 110 bytes - Click Count (0) -
docs/zh-hant/docs/how-to/extending-openapi.md
/// ## 覆寫預設行為 { #overriding-the-defaults } 基於上述資訊,你可以用相同的工具函式來產生 OpenAPI 結構,並覆寫你需要客製的部分。 例如,我們要加入 [ReDoc 的 OpenAPI 擴充,插入自訂 logo](https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo)。 ### 一般的 **FastAPI** { #normal-fastapi } 先照常撰寫你的 **FastAPI** 應用: {* ../../docs_src/extending_openapi/tutorial001_py310.py hl[1,4,7:9] *} ### 產生 OpenAPI 結構 { #generate-the-openapi-schema }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java
bufferIndex += 4; return bufferIndex - start; } @Override public String toString() { return String.format("Smb2LeaseBreakNotification[leaseKey=%s,currentState=0x%x,newState=0x%x,reason=%d]", leaseKey, currentLeaseState, newLeaseState, breakReason); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 4.8K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPluginFuncTest.groovy
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 10:22:28 GMT 2021 - 5.9K bytes - Click Count (0) -
src/archive/zip/zip_test.go
if size+int64(len("END\n")) >= 1<<32-1 { if got, want := f0.UncompressedSize, uint32(uint32max); got != want { t.Errorf("UncompressedSize %#x, want %#x", got, want) } } if got, want := f0.UncompressedSize64, uint64(size)+uint64(len(end)); got != want { t.Errorf("UncompressedSize64 %#x, want %#x", got, want) } return buf } // Issue 9857 func testZip64DirectoryRecordLength(buf *rleBuffer, t *testing.T) {Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu May 23 01:00:11 GMT 2024 - 19.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/SimpleTimeLimiterTest.java
Sample proxy = service.newProxy(target, Sample.class, ENOUGH_MS, MILLISECONDS); Stopwatch stopwatch = Stopwatch.createStarted(); String result = proxy.sleepThenReturnInput("x"); assertThat(result).isEqualTo("x"); assertThat(stopwatch.elapsed(MILLISECONDS)).isIn(Range.closed(DELAY_MS, ENOUGH_MS)); assertThat(target.finished).isTrue(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 9.4K bytes - Click Count (0) -
src/cmd/asm/internal/asm/operand_test.go
{"sync\u2215atomic·AddInt64(SB)", "sync/atomic.AddInt64(SB)"}, {"timeout+20(FP)", "timeout+20(FP)"}, {"ts+16(FP)", "ts+16(FP)"}, {"x+24(FP)", "x+24(FP)"}, {"x·y(SB)", "x.y(SB)"}, {"x·y(SP)", "x.y(SP)"}, {"x·y+8(SB)", "x.y+8(SB)"}, {"x·y+8(SP)", "x.y+8(SP)"}, {"y+56(FP)", "y+56(FP)"}, {"·AddUint32(SB)", "pkg.AddUint32(SB)"}, {"·callReflect(SB)", "pkg.callReflect(SB)"}, {"[X0-X0]", "[X0-X0]"},Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Aug 29 18:31:05 GMT 2023 - 23.9K bytes - Click Count (0)