- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 178 for 2586 (0.07 seconds)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/RequestBody.kt
* * A misdirected request (HTTP 421) on a coalesced connection. */ open fun isOneShot(): Boolean = false /** * Returns the SHA-256 hash of this [RequestBody] */ @Throws(IOException::class) fun sha256(): ByteString { val hashingSink = HashingSink.sha256(blackholeSink()) hashingSink.buffer().use { this.writeTo(it) }
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Oct 07 14:16:29 GMT 2025 - 9.3K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
return repository.getId() + '.' + file.getName() + LAST_UPDATE_TAG; } String getRepositoryKey(ArtifactRepository repository) { StringBuilder buffer = new StringBuilder(256); Proxy proxy = repository.getProxy(); if (proxy != null) { if (proxy.getUserName() != null) { int hash = (proxy.getUserName() + proxy.getPassword()).hashCode();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 9.4K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/riscv64validation.s
CLD 30(X10), X11 // ERROR "must be a multiple of 8" CLD 256(X10), X11 // ERROR "must be in range [0, 255]" CFLD 32(X10), X11 // ERROR "expected float prime register in rd position" CFLD 32(X5), F11 // ERROR "expected integer prime register in rs1 position" CFLD -1(X10), F11 // ERROR "must be in range [0, 255]" CFLD 34(X10), F11 // ERROR "must be a multiple of 8" CFLD 256(X10), F11 // ERROR "must be in range [0, 255]"
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Nov 13 12:17:37 GMT 2025 - 42.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertTrue(bytes >= 0); } @Test @DisplayName("Test read operations") void testReadOperations() { byte[] buffer = new byte[256]; // Test parameter words read int paramResult = transaction.readParameterWordsWireFormat(buffer, 0); assertEquals(0, paramResult); // Test bytes read
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.7K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/validation/DefaultSettingsValidator.java
} private static void addViolation( SettingsProblemCollector problems, Severity severity, String fieldName, String sourceHint, String message) { StringBuilder buffer = new StringBuilder(256); buffer.append('\'').append(fieldName).append('\''); if (sourceHint != null) { buffer.append(" for ").append(sourceHint); } buffer.append(' ').append(message);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 10.6K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ResourceIncludeTest.java
import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Test for the fix of issue #2486: Includes are not added to existing project resource. */ class ResourceIncludeTest { private MavenProject project; @BeforeEach void setUp() { project = new MavenProject();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 12.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/info/Smb2SetInfoResponseTest.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.3K bytes - Click Count (0) -
okhttp-tls/README.md
form of wildcards `*.example.com` where the `*` must be first and doesn't match nested subdomains. By default certificates use fast and secure 256-bit ECDSA keys. For interoperability with very old clients use `HeldCertificate.Builder.rsa2048()`. Download -------- ```kotlin implementation("com.squareup.okhttp3:okhttp-tls:5.3.0") ```
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 9.1K bytes - Click Count (0) -
tests/scanner_valuer_test.go
return json.Unmarshal([]byte(value), l) case []byte: return json.Unmarshal(value, l) default: return errors.New("not supported") } } type Role struct { Name string `gorm:"size:256"` } func (role *Role) Scan(value interface{}) error { if b, ok := value.([]uint8); ok { role.Name = string(b) } else { role.Name = value.(string) } return nil }
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Wed Jun 07 07:02:07 GMT 2023 - 10.6K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java
ContentOutputStream cos = new ContentOutputStream(100, Curl.tmpDir); byte[] largeData = new byte[500]; for (int i = 0; i < largeData.length; i++) { largeData[i] = (byte) (i % 256); } cos.write(largeData); assertFalse(cos.isInMemory()); File file = cos.getFile(); assertTrue(file.exists()); assertEquals(500, file.length());
Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Wed Nov 12 14:01:04 GMT 2025 - 9.9K bytes - Click Count (0)