Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 835 for ExtractK (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract.go

    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // ExtractInto extracts the applied configuration state from object for fieldManager
    // into applyConfiguration. If no managed fields are found for the given fieldManager,
    // no error is returned, but applyConfiguration is left unpopulated. It is possible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 03:17:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        (*k)[0] = (*it).getSExtValue();
        it++;
        if (it == kattr.end()) {
          // Handle input like e.g. "k = 5", in which case we extract a single
          // diagonal.
          (*k)[1] = (*k)[0];
        } else {
          // Handle input like e.g. "k = [-1, 1]", in which case we extract a
          // band (multiple diagonals).
          (*k)[1] = (*it).getSExtValue();
        }
        return success();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K 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. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    public interface ModelSchemaExtractionStrategy {
        /**
         * Potentially extracts the schema for a type. If this strategy does not recognize the type, this method should return without doing anything.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractorTest.groovy

                subject.value = "input: " + input
            }
        }
    
        def "extracts input parameters"() {
            given:
            registry.registerInstance("input", 12)
            registry.registerInstance("item", new Bean())
            def node = ((DefaultModelRegistry) registry).node("item")
    
            when:
            def ruleSource = extractor.extract RuleSourceWithParameter
            ruleSource.apply(registry, node)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top