Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 120 for extracted (0.1 seconds)

  1. docs/debugging/inspect/decrypt-v2.go

    	}
    	sr.ReturnNonDecryptable(true)
    
    	// Debug corrupted streams.
    	if false {
    		sr.SkipEncrypted(true)
    		return sr.DebugStream(os.Stdout)
    	}
    	extracted := false
    	for {
    		stream, err := sr.NextStream()
    		if err != nil {
    			if err == io.EOF {
    				if extracted {
    					return nil
    				}
    				return errors.New("no data found on stream")
    			}
    			if errors.Is(err, estream.ErrNoKey) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Feb 17 17:09:42 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/archives/build.gradle

            archiveClassifier.set("darwin-x86_64")
            archiveExtension.set('tar.gz')
        }
    
        tasks.register('extracted', Copy) {
            from('.')
            destinationDir = file('build/extractedDistro')
        }
    
        tasks.register("extractedAssemble").configure {
            dependsOn('extracted')
        }
    
        tasks.named("assemble").configure {
            dependsOn('tar')
        }
    }
    
    def calculateBranchVersion() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  3. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPluginFuncTest.groovy

            then:
            result.task(":darwin-tar:checkLicense").outcome == TaskOutcome.FAILED
            result.output.contains("> expected line [2] in " +
                    "[./darwin-tar/build/tar-extracted/elasticsearch-${VersionProperties.getElasticsearch()}/LICENSE.txt] " +
                    "to be [elastic license coorp stuff line 2] but was [unknown license content line 2]")
        }
    
    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)
  4. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

     * Negotiation Protocol) authentication. It contains the username extracted from the
     * SPNEGO authentication process, typically from a Kerberos ticket.
     */
    public class SpnegoCredential implements LoginCredential, FessCredential {
    
        /** The username extracted from SPNEGO authentication. */
        private final String username;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.9K bytes
    - Click Count (1)
  5. src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java

            assertEquals(testData.length, writtenBytes);
    
            byte[] extracted = new byte[testData.length];
            System.arraycopy(outputBuffer, 50, extracted, 0, testData.length);
            assertArrayEquals(testData, extracted);
        }
    
        @Test
        @DisplayName("Test small data handling")
        public void testSmallDataHandling() throws CIFSException {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

        public void test_field_name_extraction() {
            // Test that field names can be extracted from encoded strings
            String originalFieldName = "author";
            String encodedFieldName = BaseEncoding.base64().encode(originalFieldName.getBytes(StandardCharsets.UTF_8));
            String fullFieldName = Constants.FACET_FIELD_PREFIX + encodedFieldName;
    
            // Extract the encoded part
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  7. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy

                }
                configurations {
                    extracted {
                        attributes {
                              attribute(ArtifactAttributes.ARTIFACT_FORMAT, "directory")
                        }
                    }
                }
                artifacts {
                    it.add("default", buildTar)
                    it.add("extracted", buildExpanded)
                }
            """
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  8. src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java

        @Test
        @DisplayName("readSecurityBuffer correctly extracts data")
        void testReadSecurityBuffer() {
            byte[] buf = new byte[8 + 4];
            byte[] payload = { 0x11, 0x22, 0x33, 0x44 };
            NtlmMessage.writeSecurityBuffer(buf, 0, 8, payload);
            byte[] extracted = NtlmMessage.readSecurityBuffer(buf, 0);
            assertArrayEquals(payload, extracted, "Payload should match original");
        }
    
        @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  9. apache-maven/src/assembly/maven/lib/jline-native/README.txt

    This directory contains JLine native libraries extracted from JLine JAR.
    
    You can add your own build for platforms not natively supported by JLine.
    See here [1] on how to compile for your platform and here [2] how libraries
    follow JLine's directory and filename conventions.
    
    [1] https://github.com/jline/jline3/tree/master/native
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Oct 24 12:01:35 GMT 2024
    - 428 bytes
    - Click Count (0)
  10. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveSetupPluginFuncTest.groovy

                configurations {
                    consumeArchive {}
                    consumeDir {}
                }
    
                dependencies {
                    consumeDir project(path: ':producer-tar', configuration:'extracted')
                    consumeArchive project(path: ':producer-tar', configuration:'default' )
                }
    
                tasks.register("copyDir", Copy) {
                    from(configurations.consumeDir)
    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)
Back to Top