- Sort Score
- Num 10 results
- Language All
Results 1071 - 1080 of 1,783 for tape (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
} else { throw new SmbException("Unsupported credential type"); } } else if (session.transport.server.security == SECURITY_SHARE) { if (!(cred instanceof final NtlmPasswordAuthentication auth)) { throw new SmbException("Unsupported credential type"); } lmHash = new byte[0]; ntHash = new byte[0];Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 7.1K bytes - Click Count (0) -
docs/de/docs/tutorial/stream-json-lines.md
## JSON Lines { #json-lines } In diesen Fällen ist es üblich, „JSON Lines“ zu senden, das ist ein Format, bei dem Sie pro Zeile genau ein JSON-Objekt senden. Eine Response hätte einen Content-Type von `application/jsonl` (anstelle von `application/json`) und der Body sähe etwa so aus: ```json {"name": "Plumbus", "description": "A multi-purpose household device."}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:48:21 GMT 2026 - 4.9K bytes - Click Count (0) -
cmd/leak-detect_test.go
leakDetectDeadline = 5 // pause time (in milliseconds) between each snapshot at the end of the go routine leak detection. leakDetectPauseTimeMs = 50 ) // LeakDetect - type with methods for go routine leak detection. type LeakDetect struct { relevantRoutines map[string]bool } // NewLeakDetect - Initialize a LeakDetector with the snapshot of relevant Go routines. func NewLeakDetect() LeakDetect {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 5.2K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveSetupPluginFuncTest.groovy
settingsFile << """ include ':consumer' include ':producer-tar' """ buildFile << """ import org.gradle.api.artifacts.type.ArtifactTypeDefinition; import org.gradle.api.internal.artifacts.ArtifactAttributes; def snapshotFile = file("snapshot-\${version}.txt") snapshotFile << 'some snapshot content'Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 8.4K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
```json { "analysis": { "filter": { "swedish_stop": { "type": "stop", "stopwords": "_swedish_" }, "swedish_stemmer": { "type": "stemmer", "language": "swedish" } }, "analyzer": { "sv_analyzer": { "type": "custom", "tokenizer": "standard",Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
} @Test void testDoFilter_ntlmType1Message() throws Exception { // Test NTLM Type 1 message handling // This test verifies that when a Type 1 NTLM message is received, // the filter processes it correctly through NtlmSsp.authenticate // Create a minimal filter config that won't try to connect to a real serverCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 12.8K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingSuperclassChangeRule.groovy
* * <p> * Reports simple superclass changes (e.g. the removal of a superclass) as a breaking change, as it affects what methods can be * called with the given type, even if the methods and fields inherited don't change. * </p> */ class BinaryBreakingSuperclassChangeRule extends AbstractSuperClassChangesRule { BinaryBreakingSuperclassChangeRule(Map<String, Object> params) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 06 19:15:15 GMT 2022 - 1.8K bytes - Click Count (0) -
android/guava/src/com/google/common/eventbus/Subscribe.java
import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marks a method as an event subscriber. * * <p>The type of event will be indicated by the method's first (and only) parameter, which cannot * be primitive. If this annotation is applied to methods with zero parameters, or more than one
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 15:46:17 GMT 2025 - 1.5K bytes - Click Count (0) -
src/test/java/jcifs/CredentialsTest.java
mockCredentials.getUserDomain(); mockCredentials.isAnonymous(); mockCredentials.isGuest(); }); } @Test @DisplayName("Should unwrap to correct type") void testUnwrap() { // Given when(mockCredentials.unwrap(Credentials.class)).thenReturn(mockCredentials); // When Credentials unwrapped = mockCredentials.unwrap(Credentials.class);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2.5K bytes - Click Count (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Qualifier.java
import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Meta-annotation that marks other annotations as qualifier annotations. * <p> * Qualifiers are used to distinguish between multiple beans of the same type, * allowing for more precise control over which implementation should be injected. * Custom qualifier annotations should be annotated with {@code @Qualifier}. * <p> * Example of creating a custom qualifier: * <pre>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jan 30 23:28:59 GMT 2025 - 1.7K bytes - Click Count (0)