Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Precedence (0.28 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    		if weighted[0].HostRewriteSpecifier != nil && action.HostRewriteSpecifier == nil {
    			// Ideally, if the weighted cluster overwrites authority, it has precedence. This mirrors behavior of headers,
    			// because for headers we append the weighted last which allows it to Set and wipe out previous Adds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    			// e.g. 1,2, 3 in service and 3,4 in sidecar ingress,
    			// this will still generate listeners for 1,2,3,4 where 3 is picked from sidecar ingress
    			// port present in sidecarIngress listener so let sidecar take precedence
    			continue
    		}
    		localCluster := cb.buildInboundCluster(epPort, bind, proxy, instances[0], instances)
    		// If inbound cluster match has service, we should see if it matches with any host name across all instances.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    			// e.g. 1,2, 3 in service and 3,4 in sidecar ingress,
    			// this will still generate listeners for 1,2,3,4 where 3 is picked from sidecar ingress
    			// port present in sidecarIngress listener so let sidecar take precedence
    			continue
    		}
    		cc := inboundChainConfig{
    			telemetryMetadata: telemetry.FilterChainMetadata{InstanceHostname: i.Service.Hostname},
    			port:              port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    		}
    	}
    	return true
    }
    
    // hasCustomTLSCerts returns the tls cert paths, used both if custom TLS certificates are configured via args or by mounting in well known.
    // while tls args should still take precedence the aim is to encourage loading the DNS tls cert in the well known path locations.
    func hasCustomTLSCerts(tlsOptions TLSOptions) (ok bool, tlsCertPath, tlsKeyPath, caCertPath string) {
    	// load from tls args as priority
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		// deletions at the same time (e.g. indexed Jobs with repeated indexes), we
    		// restrict ourselves to either just pod deletion or pod creation in any
    		// given sync cycle. Of these two, pod deletion takes precedence.
    		return active, metrics.JobSyncActionPodsDeleted, err
    	}
    
    	if diff := wantActive - terminating - active; diff > 0 {
    		var remainingTime time.Duration
    		if !hasBackoffLimitPerIndex(job) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      params=("${SCHEDULER_TEST_LOG_LEVEL:-"--v=2"}" "${SCHEDULER_TEST_ARGS:-}")
      if [[ -n "${FEATURE_GATES:-}" ]]; then
        params+=("--feature-gates=${FEATURE_GATES}")
      fi
    
      # Scheduler Component Config takes precedence over some flags.
      if [[ -n "${KUBE_SCHEDULER_CONFIG:-}" ]]; then
        create-kube-scheduler-config
        params+=("--config=/etc/srv/kubernetes/kube-scheduler/config")
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // that could be controlled by this version, but for now the version
    // specified has no effect.
    //
    // The replace directive has the same syntax as the replace directive in a
    // go.mod file and takes precedence over replaces in go.mod files.  It is
    // primarily intended to override conflicting replaces in different workspace
    // modules.
    //
    // To determine whether the go command is operating in workspace mode, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top