Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,025 for extractID (0.31 sec)

  1. pkg/wasm/imagefetcher.go

    	}
    	defer r.Close()
    
    	ret, err := extractWasmPluginBinary(r)
    	if err != nil {
    		return nil, fmt.Errorf("could not extract wasm binary: %v", err)
    	}
    	return ret, nil
    }
    
    // extractOCIStandardImage extracts the Wasm binary from the
    // *compat* variant Wasm image with the standard OCI media type: application/vnd.oci.image.layer.v1.tar+gzip.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DefaultDecompressionCoordinator.java

    import org.gradle.cache.scopes.ScopedCacheBuilderFactory;
    
    import java.io.File;
    
    /**
     * The default implementation of {@link DecompressionCoordinator} that can be used to store decompressed data extracted from archive files like zip and tars.
     *
     * Will manage access to the cache, so that access to the archive's contents are only permitted to one client at a time.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/ApiClassExtractor.java

                || exportedPackages.contains(packageNameOf(originalClassName));
        }
    
        /**
         * Extracts an API class from a given original class.
         *
         * @param originalClassReader the reader containing the original class
         * @return bytecode of the API class extracted from the original class. Returns {@link Optional#empty()} when class should not be included, due to some reason that is not known until visited.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/ExtractSymbols.java

        }
    
        /**
         * The file to extract debug symbols from.
         */
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        public RegularFileProperty getBinaryFile() {
            return binaryFile;
        }
    
        /**
         * The destination file to extract debug symbols into.
         */
        @OutputFile
        public RegularFileProperty getSymbolFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            writeOnly.getters.size() == 0
            writeOnly.setters.size() == 1
        }
    
        def "extracts property names"() {
            expect:
            def details = ClassInspector.inspect(PropNames)
    
            details.propertyNames == ['class', 'metaClass', 'a', 'b', 'URL', 'url', '_A'] as Set
        }
    
        def "extracts properties of a Groovy interface"() {
            expect:
            def details = ClassInspector.inspect(SomeInterface)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. security/pkg/pki/util/san.go

    // extract identities from the SAN extension.
    func ExtractIDs(exts []pkix.Extension) ([]string, error) {
    	sanExt := ExtractSANExtension(exts)
    	if sanExt == nil {
    		return nil, fmt.Errorf("the SAN extension does not exist")
    	}
    
    	idsWithType, err := ExtractIDsFromSAN(sanExt)
    	if err != nil {
    		return nil, fmt.Errorf("failed to extract identities from SAN extension (error %v)", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  7. src/go/doc/doc.go

    	Bugs []string
    
    	// declarations
    	Consts []*Value
    	Types  []*Type
    	Vars   []*Value
    	Funcs  []*Func
    
    	// Examples is a sorted list of examples associated with
    	// the package. Examples are extracted from _test.go files
    	// provided to NewFromFiles.
    	Examples []*Example
    
    	importByName map[string]string
    	syms         map[string]bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaStoreTest.groovy

    import java.beans.Introspector
    import java.util.concurrent.CopyOnWriteArraySet
    
    class DefaultModelSchemaStoreTest extends ConcurrentSpec {
        def extractor = DefaultModelSchemaExtractor.withDefaultStrategies()
        def store = new DefaultModelSchemaStore(extractor)
    
        def "caches schema for a type"() {
            // intentionally use two different “instances” of the same type
            def type1 = ModelType.of(SimpleManagedType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/pack/doc.go

    For the p command, each file is prefixed by the name on a line by itself.
    For the t command, the listing includes additional file metadata.
    For the x command, names are printed as files are extracted.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/validatingadmissionpolicy.go

    // validatingAdmissionPolicy must be a unmodified ValidatingAdmissionPolicy API object that was retrieved from the Kubernetes API.
    // ExtractValidatingAdmissionPolicy provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    // applied if another fieldManager has updated or force applied any of the previously applied fields.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 02:44:28 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top