- Sort Score
- Num 10 results
- Language All
Results 721 - 730 of 1,426 for sset (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
tensorflow/c/eager/immediate_execution_context.h
#if !defined(IS_MOBILE_PLATFORM) // Set up a multi-client distributed execution environment. Must be called on // all tasks in the cluster. // This call internally coordinates with other tasks to initialize the eager // context and TF server for multi-client execution. virtual absl::Status EnableCollectiveOps(const ServerDef& server_def) = 0; // Set a distributed manager that helps set up, update, and check liveness
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 12.3K bytes - Click Count (0) -
.github/workflows/vulncheck.yml
jobs: vulncheck: name: Analysis runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v5 with: go-version: 1.24.x cached: false - name: Get official govulncheck run: go install golang.org/x/vuln/cmd/govulncheck@latestCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Apr 24 23:34:11 GMT 2025 - 682 bytes - Click Count (0) -
.github/workflows/maven.yml
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 677 bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.dokka-multimodule-conventions.gradle.kts
add("dokka", project(":okhttp-dnsoverhttps")) add("dokka", project(":okhttp-java-net-cookiejar")) add("dokka", project(":logging-interceptor")) add("dokka", project(":okhttp-sse")) add("dokka", project(":okhttp-tls")) add("dokka", project(":okhttp-urlconnection")) add("dokka", project(":okhttp-zstd")) add("dokka", project(":mockwebserver")) add("dokka", project(":mockwebserver3"))
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 822 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java
Object deserialized = serializer.fromBinaryToObject(serialized); assertNotNull(deserialized, "Deserialized object should not be null"); assertTrue("Deserialized object should be a Set", deserialized instanceof Set); assertEquals("Set contents should match", original, deserialized); } /** * Test serialization of TreeMap */ @Test public void test_serializeDeserialize_treeMap() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.6K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
when(negotiationResponse.canReuse(any(CIFSContext.class), anyBoolean())).thenReturn(true); // Use reflection to set the negotiated response Field negotiatedField = SmbTransportImpl.class.getDeclaredField("negotiated"); negotiatedField.setAccessible(true); negotiatedField.set(initial, negotiationResponse); // When: Request connection with signing enforced
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 19.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
if (MAVEN_RESOLVER_TRANSPORT_DEFAULT.equals(transport)) { // The "default" mode (user did not set anything) from now on defaults to AUTO } else if (MAVEN_RESOLVER_TRANSPORT_JDK.equals(transport)) { // Make sure (whatever extra priority is set) that resolver file/jdk is selected configProps.put(FILE_TRANSPORTER_PRIORITY_KEY, RESOLVER_MAX_PRIORITY);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Mar 19 13:42:58 GMT 2026 - 25.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/HashBiMap.java
import java.util.Arrays; import java.util.ConcurrentModificationException; import java.util.Iterator; import java.util.Map; import java.util.NoSuchElementException; import java.util.Objects; import java.util.Set; import java.util.function.BiConsumer; import java.util.function.BiFunction; import org.jspecify.annotations.Nullable; /** * A {@link BiMap} backed by two hash tables. This implementation allows null keys and values. ACreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 25.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
testBlock.prepare(nextRequest); } @Test @DisplayName("Test set request credits") void testSetRequestCredits() { testBlock.setRequestCredits(10); } @Test @DisplayName("Test set session ID") void testSetSessionId() { testBlock.setSessionId(123456L); } } @Nested
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 36.2K bytes - Click Count (0) -
docs/extensions/s3zip/examples/minio-go/main.go
Creds: credentials.NewStaticV4("access-key", "secret-key", ""), }) if err != nil { log.Fatalln(err) } var opts minio.GetObjectOptions // Add extract header to request: opts.Set("x-minio-extract", "true") // Download API.md from the archive rd, err := s3Client.GetObject(context.Background(), "your-bucket", "path/to/file.zip/data.csv", opts) if err != nil { log.Fatalln(err) }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Jun 14 18:04:14 GMT 2021 - 694 bytes - Click Count (0)