Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 167 for Precedence (0.27 sec)

  1. src/cmd/vendor/golang.org/x/text/transform/transform.go

    			case err == ErrShortSrc && r.src1-r.src0 != len(r.src) && r.err == nil:
    				// Read more bytes into src via the code below, and try again.
    			default:
    				r.transformComplete = true
    				// The reader error (r.err) takes precedence over the
    				// transformer error (err) unless r.err is nil or io.EOF.
    				if r.err == nil || r.err == io.EOF {
    					r.err = err
    				}
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    		if f {
    			vs := old.Spec.(*networking.VirtualService)
    			vs.Http = append(vs.Http, httpRoutes...)
    		} else {
    			ingressByHost[host] = &virtualServiceConfig
    		}
    
    		// sort routes to meet ingress route precedence requirements
    		// see https://kubernetes.io/docs/concepts/services-networking/ingress/#multiple-matches
    		vs := ingressByHost[host].Spec.(*networking.VirtualService)
    		sort.SliceStable(vs.Http, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

                    newLine();
                } finally {
                    depth--;
                }
    
                if (spec.isShowAttributePrecedence()) {
                    writeDescription("(#): Attribute disambiguation precedence");
                    newLine();
                }
            }
        }
    
        private void writeLegend(List<ReportConfiguration> configs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top