Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 175 for inversion (0.76 sec)

  1. pkg/api/testing/unstructured_test.go

    			{Version: "v1", Kind: "Secret"},
    			{Version: "v1", Kind: "SecretList"},
    			{Version: "v1", Kind: "RangeAllocation"},
    			{Version: "v1", Kind: "ConfigMap"},
    			{Version: "v1", Kind: "ConfigMapList"},
    			{Group: "admissionregistration.k8s.io", Version: "v1beta1", Kind: "MutatingWebhookConfiguration"},
    			{Group: "admissionregistration.k8s.io", Version: "v1beta1", Kind: "MutatingWebhookConfigurationList"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go

    	}
    	if in.SelectableFields != nil {
    		in, out := &in.SelectableFields, &out.SelectableFields
    		*out = make([]SelectableField, len(*in))
    		copy(*out, *in)
    	}
    	if in.Conversion != nil {
    		in, out := &in.Conversion, &out.Conversion
    		*out = new(CustomResourceConversion)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PreserveUnknownFields != nil {
    		in, out := &in.PreserveUnknownFields, &out.PreserveUnknownFields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    //
    // TODO(pulkitb): Add more options.
    //  * Verbose - dump intermediate translations.
    //  * Choose specific signatures/functions from a saved model.
    //  * Options for full/partial conversion, Op exceptions list.
    //  * Option to serialize output to TFL flatbuffer format.
    
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    opt<std::string> input_model(llvm::cl::Positional,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Status responseStatus = 10;
    
      // API object from the request, in JSON format. The RequestObject is recorded as-is in the request
      // (possibly re-encoded as JSON), prior to version conversion, defaulting, admission or
      // merging. It is an external versioned object type, and may not be a valid object on its own.
      // Omitted for non-resource requests.  Only logged at Request Level and higher.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

      // Attempts to materialize a conversion for a type mismatch between a call
      // from this dialect, and a callable region. This method should generate an
      // operation that takes 'input' as the only operand, and produces a single
      // result of 'resultType'. If a conversion can not be generated, nullptr
      // should be returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. cmd/bucket-metadata.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. cmd/postpolicyform.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // doesn't wrap around like TensorFlow and is always positive. For this
    // conversion, use the first input to get inputs rank. Other inputs need not be
    // ranked.
    // Defining op for `axis` is TensorFlow constant op in the pattern as during
    // the conversion, original Concat op operands still refers to the old ops even
    // if HLO constant op is introduced as an replacement for the TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

        }
    
        def "pom conversion to kotlin build scripts is triggered when pom and no gradle file found"() {
            given:
            pom()
    
            when:
            run('init')
    
            then:
            pomValuesUsed(rootProjectDslFixtureFor(KOTLIN))
        }
    
        def "pom conversion to #scriptDsl build scripts not triggered when build type is specified"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/plan.go

    			beforeKubeadmVersion = component.CurrentVersion
    			afterKubeadmVersion = component.NewVersion
    		}
    	}
    
    	newK8sVersion, err := version.ParseSemantic(kubeVersion)
    	if err != nil {
    		return errors.Wrapf(err, "Unable to parse normalized version %q as a semantic version", kubeVersion)
    	}
    
    	unstableVersionFlag := ""
    	if len(newK8sVersion.PreRelease()) != 0 {
    		if strings.HasPrefix(newK8sVersion.PreRelease(), "rc") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top