Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 474 for Extract (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     *
     * <p>
     * For a given build tree, only a single process is allowed write access to extract archives at a time.
     *
     * Multiple build processes are allowed to extract archives concurrently as long as they use different build trees (in other words, different root directories).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/internal/operations/BuildOperationTypes.java

            return uncheckedCast(extract(type, 0));
        }
    
        public static <D, R, T extends BuildOperationType<D, R>> Class<R> resultType(Class<T> type) {
            return uncheckedCast(extract(type, 1));
        }
    
        private static <T extends BuildOperationType<?, ?>> Class<?> extract(Class<T> type, int index) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        }
    
        def "only one thread is allowed to extract the same archive at once"() {
            given:
            server.start()
            createTar('test.tar') {
                file ('file.txt').text = 'original text 1'
            }
            buildFile << """
                task extract(type: Extract) {
                    archiveFile = file('test.tar')
                    destinationDir = file('build/extract')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. pkg/kube/controllers/common.go

    	if e.AddExtendedFunc != nil {
    		e.AddExtendedFunc(Extract[T](obj), initialSync)
    	} else if e.AddFunc != nil {
    		e.AddFunc(Extract[T](obj))
    	}
    }
    
    func (e EventHandler[T]) OnUpdate(oldObj, newObj interface{}) {
    	if e.UpdateFunc != nil {
    		e.UpdateFunc(Extract[T](oldObj), Extract[T](newObj))
    	}
    }
    
    func (e EventHandler[T]) OnDelete(obj interface{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top