Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for Precedence (0.19 sec)

  1. pkg/kube/inject/inject.go

    	// NeverInjectSelector: Refuses the injection on pods whose labels match this selector.
    	// It's an array of label selectors, that will be OR'ed, meaning we will iterate
    	// over it and stop at the first match
    	// Takes precedence over AlwaysInjectSelector.
    	NeverInjectSelector []metav1.LabelSelector `json:"neverInjectSelector"`
    
    	// AlwaysInjectSelector: Forces the injection on pods whose labels match this selector.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // Required.
      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

      // Checks whether the model contains an `XlaCallModuleOp` operation which
      // is a wrapper around StableHLO.
      // This option is mutually exclusive to `enable_stablehlo_conversion`, the
      // latter of which takes precedence.
      // TODO(b/290109282): explore removing the enable_hlo_to_tf_conversion flag
      // entirely, such that the added passes are no-ops in the non-shlo case.
      module->walk([&](mlir::TF::XlaCallModuleOp xla_call_module_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

            return cached;
        }
    
        /**
         * Creates and returns a new <code>VersionRange</code> that is a restriction of this
         * version range and the specified version range.
         * <p>
         * Note: Precedence is given to the recommended version from this version range over the
         * recommended version from the specified version range.
         * </p>
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. pkg/test/framework/resource/flags.go

    	}
    
    	if s.Revision != "" {
    		if s.Revisions != nil {
    			return fmt.Errorf("cannot use --istio.test.revision and --istio.test.revisions at the same time," +
    				" --istio.test.revisions will take precedence and --istio.test.revision will be ignored")
    		}
    		// use Revision as the sole revision in RevVerMap
    		s.Revisions = RevVerMap{
    			s.Revision: "",
    		}
    	} else if s.Revisions != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    	).Get()
    
    	SharedMeshConfig = env.Register("SHARED_MESH_CONFIG", "",
    		"Additional config map to load for shared MeshConfig settings. The standard mesh config will take precedence.").Get()
    
    	MultiRootMesh = env.Register("ISTIO_MULTIROOT_MESH", false,
    		"If enabled, mesh will support certificates signed by more than one trustAnchor for ISTIO_MUTUAL mTLS").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    	CertificateKey string
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	SkipPhases []string
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    	// "kubeadm init".
    	Patches *Patches
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	cacheDir := getDefaultCacheDir()
    
    	// retrieve a user-provided value for the "cache-dir"
    	// override httpCacheDir and discoveryCacheDir if user-value is given.
    	// user-provided value has higher precedence than default
    	// and KUBECACHEDIR environment variable.
    	if f.CacheDir != nil && *f.CacheDir != "" && *f.CacheDir != getDefaultCacheDir() {
    		cacheDir = *f.CacheDir
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. src/archive/tar/common.go

    	//
    	// The following are semantically equivalent:
    	//  h.Xattrs[key] = value
    	//  h.PAXRecords["SCHILY.xattr."+key] = value
    	//
    	// When Writer.WriteHeader is called, the contents of Xattrs will take
    	// precedence over those in PAXRecords.
    	//
    	// Deprecated: Use PAXRecords instead.
    	Xattrs map[string]string
    
    	// PAXRecords is a map of PAX extended header records.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo_test.go

    		// The version/tag mismatch takes precedence over the +incompatible mismatched.
    		vcs:  "git",
    		path: "vcs-test.golang.org/git/semver-branch.git",
    		rev:  "v2.0.0+incompatible",
    		err:  `resolves to version v0.1.0 (v2.0.0 is not a tag)`,
    	},
    	{
    		// Git branch with a semver name, matching go.mod file, and mismatched version.
    		// The version/tag mismatch takes precedence over the +incompatible mismatched.
    		vcs:  "git",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top