Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 684 for Extract (0.5 sec)

  1. pilot/test/xdstest/extract.go

    Xiaopeng Han <******@****.***> 1703025762 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

        }
    
    
        def extract(Class<?> type, Class<?> delegateType = null) {
            return extract(type, [], delegateType)
        }
        def extract(Class<?> type, List<Class<?>> viewTypes, Class<?> delegateType = null) {
            return bindingStore.getBindings(
                ModelType.of(type),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            C1 getC();
    
            D1 getD();
        }
    
        def "can extract incestuous nest"() {
            expect:
            extract(type).getProperty("a").type == extract(A1).type
            extract(type).getProperty("b").type == extract(B1).type
            extract(type).getProperty("c").type == extract(C1).type
            extract(type).getProperty("d").type == extract(D1).type
    
            where:
            type << [A1, B1, C1, D1]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/ExtractSymbolsIntegrationTest.groovy

                }
    
                task extractSymbolsDebug(type: ExtractSymbols) { extract ->
                    project.application.binaries.get { !it.optimized }.configure {
                        def linkDebug = linkTask.get()
                        extract.toolChain = linkDebug.toolChain
                        extract.targetPlatform = linkDebug.targetPlatform
                        extract.binaryFile.set linkDebug.linkedFile
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/metrics/types_util.cc

      void Extract(tflite::metrics::ConverterErrorData* error_data) {
        using tflite::metrics::ConverterErrorData;
        auto mutable_location = error_data->mutable_location();
    
        llvm::TypeSwitch<LocationAttr>(impl)
            .Case<OpaqueLoc>([&](OpaqueLoc loc) {
              LocationExtractor(loc.getFallbackLocation()).Extract(error_data);
            })
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

            expect:
            extract(ClassWithNonRuleMethods).empty
        }
    
        static abstract class AbstractRules extends RuleSource {}
    
        def "rule class can be abstract"() {
            expect:
            extract(AbstractRules).empty
        }
    
        def "can create instance of abstract rule class"() {
            expect:
            def schema = extractor.extract(AbstractRules)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

                            into layout.buildDirectory.dir("extract")
                        }
                    }
                }
                task extract2(type: CopyAndList) {
                    unzipped.from(zipTree(file("hello.zip")))
                }
            """
            when:
            succeeds("extract")
            then:
            file("build/extract/hello.txt").text == "hello"
            cachedFile.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/kube/krt/index.go

    	c Collection[I],
    	extract func(o I) []K,
    ) *Index[I, K] {
    	idx := Index[I, K]{
    		objects: make(map[K]sets.Set[Key[I]]),
    		c:       c,
    		mu:      sync.RWMutex{},
    		extract: extract,
    	}
    	c.Register(func(o Event[I]) {
    		idx.mu.Lock()
    		defer idx.mu.Unlock()
    
    		if o.Old != nil {
    			obj := *o.Old
    			key := GetKey(obj)
    			for _, indexKey := range extract(obj) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/VariantAspectExtractionStrategy.java

    import org.gradle.model.internal.manage.schema.extract.InvalidManagedModelElementTypeException;
    import org.gradle.model.internal.manage.schema.extract.ModelPropertyExtractionResult;
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaAspectExtractionResult;
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaAspectExtractionStrategy;
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaExtractionContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                error(unsupportedValueTypeConfig { type('MyTask').property('nestedBean.nestedInput').annotationType(annotation).unsupportedValueType('ResolvedArtifactResult').propertyType('Property<ResolvedArtifactResult>').solution('Extract artifact metadata and annotate with @Input.').solution('Extract...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top