Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 222 for Precedence (0.38 sec)

  1. pilot/pkg/config/kube/ingress/status.go

    	// For pods, we enqueue all Ingress if its part of the ingress service
    	c.pods.AddEventHandler(controllers.ObjectHandler(func(o controllers.Object) {
    		if c.meshConfig.Mesh().IngressService != "" {
    			// Ingress Service takes precedence
    			return
    		}
    		ingressSelector := c.meshConfig.Mesh().IngressSelector
    
    		// get all pods acting as ingress gateways
    		igSelector := getIngressGatewaySelector(ingressSelector, "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    		}
    		return args[i].Name < args[j].Name
    	})
    	return args
    }
    
    // convertFromArgs takes a slice of arguments and returns an argument map.
    // Duplicate argument keys will be de-duped, where later keys will take precedence.
    func convertFromArgs(in []kubeadm.Arg) map[string]string {
    	if in == nil {
    		return nil
    	}
    	args := make(map[string]string, len(in))
    	for _, arg := range in {
    		args[arg.Name] = arg.Value
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/net/http/servemux121.go

    func (mux *serveMux121) handler(host, path string) (h Handler, pattern string) {
    	mux.mu.RLock()
    	defer mux.mu.RUnlock()
    
    	// Host-specific pattern takes precedence over generic ones
    	if mux.hosts {
    		h, pattern = mux.match(host + path)
    	}
    	if h == nil {
    		h, pattern = mux.match(path)
    	}
    	if h == nil {
    		h, pattern = NotFoundHandler(), ""
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pkg/dns/server/name_table.go

    		} else if provider.ID(ni.Registry) != provider.Kubernetes {
    			// 2 possible cases:
    			// 1. If the SE has multiple addresses(vips) specified, merge the ips
    			// 2. If the previous SE is a decorator of the k8s service, give precedence to the k8s service
    			if svc.Attributes.ServiceRegistry == provider.Kubernetes {
    				ni.Ips = addressList
    				ni.Registry = string(provider.Kubernetes)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                val incDecPrecedence = when (psi) {
                    is KtPostfixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.POSTFIX
                    else -> KaCompoundAccess.IncOrDecOperation.Precedence.PREFIX
                }
                val incOrDecOperationKind = psi.getInOrDecOperationKind()
                val baseExpression = deparenthesize(psi.baseExpression)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     *   i++
     *   // partiallyAppliedSymbol: {
     *   //   symbol: `i`
     *   //   dispatchReceiver: null
     *   //   extensionReceiver: null
     *   // }
     *   // accessType: IncDec {
     *   //   kind: INC
     *   //   precedence: POSTFIX
     *   //   operationSymbol: Int.inc()
     *   // }
     * }
     * ```
     * Note that if the variable has a `<op>Assign` member, then it's represented as a simple `KaFunctionCall`. For example,
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		resources.CpuMaximum = calculateCPUMaximum(cpuLimit, int64(winstats.ProcessorCount()))
    	}
    
    	// The processor resource controls are mutually exclusive on
    	// Windows Server Containers, the order of precedence is
    	// CPUCount first, then CPUMaximum.
    	if resources.CpuCount > 0 {
    		if resources.CpuMaximum > 0 {
    			resources.CpuMaximum = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                }
    
                storedState.updates
                    .filter { update ->
                        // Only loaded properties can be overridden.
                        // Mutated properties are taking precedence over overridden because the
                        // first ones defined in build logic, hence we want to restore it.
                        update !is SystemPropertyLoad || !overriddenSystemProperties.contains(update.key)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. tests/integration/pilot/gw_topology_test.go

    // should be used to populate the upstream XFF header.
    //
    // If the PROXY protocol is enabled, and additionally an XFF header is provided AND numTrustedProxies is set, the XFF header on the incoming request
    // will take precedence when populating the upstream XFF header.
    func TestProxyProtocolTCPGateway(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			inject := false
    			if t.Settings().Compatibility {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/net/http/pattern.go

    )
    
    // conflictsWith reports whether p1 conflicts with p2, that is, whether
    // there is a request that both match but where neither is higher precedence
    // than the other.
    //
    //	Precedence is defined by two rules:
    //	1. Patterns with a host win over patterns without a host.
    //	2. Patterns whose method and path is more specific win. One pattern is more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top