- Sort Score
- Result 10 results
- Languages All
Results 1791 - 1800 of 2,957 for name4 (0.02 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/concurrent/Task.kt
* * Tasks are bound to the [TaskQueue] they are scheduled in. Each queue is sequential and the tasks * within it never execute concurrently. It is an error to use a task in multiple queues. */ abstract class Task( val name: String, val cancelable: Boolean = true, ) { // Guarded by the TaskRunner. internal var queue: TaskQueue? = null /** Undefined unless this is in [TaskQueue.futureTasks]. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/ChecksumHashFunctionTest.java
byte[] bytes = HashTestUtils.ascii(input); Checksum checksum = supplier.get(); checksum.update(bytes, 0, bytes.length); long value = checksum.getValue(); String toString = "name"; HashFunction func = new ChecksumHashFunction(supplier, 32, toString); assertEquals(toString, func.toString()); assertEquals(value, func.hashBytes(bytes).padToLong()); } private static void assertHash32(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 30 14:33:12 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
* @param len */ public TransCallNamedPipe ( Configuration config, String pipeName, byte[] data, int off, int len ) { super(config, SMB_COM_TRANSACTION, TRANS_CALL_NAMED_PIPE); this.name = pipeName; this.pipeData = data; this.pipeDataOff = off; this.pipeDataLen = len; this.timeout = 0xFFFFFFFF; this.maxParameterCount = 0; this.maxDataCount = 0xFFFF;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
tests/test_tutorial/test_query_params_str_validations/test_tutorial010_an_py39.py
import pytest from dirty_equals import IsDict from fastapi.testclient import TestClient from ...utils import needs_py39 @pytest.fixture(name="client") def get_client(): from docs_src.query_params_str_validations.tutorial010_an_py39 import app client = TestClient(app) return client @needs_py39 def test_query_params_str_validations_no_query(client: TestClient): response = client.get("/items/")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 6.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy
private boolean containsMethod(CtClass c, CtMethod method) { // TODO signature contains return type // but return type can be overridden return collectAllPublicApiMethods(c).any { it.name == method.name && it.signature == method.signature } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 06 19:15:15 UTC 2022 - 3.7K bytes - Viewed (0) -
istioctl/pkg/tag/tag.go
fmt.Fprintf(w, tagCreatedStr, tagName, revision, tagName) return nil } func analyzeWebhook(name, istioNamespace, wh, revision string, config *rest.Config) error { sa := local.NewSourceAnalyzer(analysis.Combine("webhook", &webhook.Analyzer{}), "", resource.Namespace(istioNamespace), nil) if err := sa.AddReaderKubeSource([]local.ReaderSource{{Name: "", Reader: strings.NewReader(wh)}}); err != nil { return err }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 15:40:30 UTC 2024 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Name */ public static final String LABELS_NAME = "{labels.name}"; /** The key of the message: Num of Thread */ public static final String LABELS_NUM_OF_THREAD = "{labels.numOfThread}"; /** The key of the message: Duplicate Name */ public static final String LABELS_DUPLICATE_HOST_NAME = "{labels.duplicateHostName}";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 146.4K bytes - Viewed (0) -
src/archive/tar/testdata/gnu-multi-hdrs.tar
GNU1/GNU1/long-path-name...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Dec 02 02:27:27 UTC 2015 - 4.5K bytes - Viewed (0) -
src/archive/tar/testdata/pax-multi-hdrs.tar
PAX1/PAX1/long-path-name...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Dec 02 02:27:27 UTC 2015 - 4.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository.legacy.repository; import javax.inject.Inject; import javax.inject.Named; import javax.inject.Singleton; import java.util.Map; import org.apache.maven.artifact.UnknownRepositoryLayoutException; import org.apache.maven.artifact.repository.ArtifactRepository;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0)