Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 298 for Precedence (0.14 sec)

  1. 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)
  2. 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)
  3. src/html/template/content.go

    	HTMLAttr string
    
    	// JS encapsulates a known safe EcmaScript5 Expression, for example,
    	// `(x + y * z())`.
    	// Template authors are responsible for ensuring that typed expressions
    	// do not break the intended precedence and that there is no
    	// statement/expression ambiguity as when passing an expression like
    	// "{ foo: bar() }\n['foo']()", which is both a valid Expression and a
    	// valid Program with a very different meaning.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	RetryPeriod time.Duration
    
    	// KeyComparison defines a function to compare the existing leader's key to our own.
    	// If the function returns true, indicating our key has high precedence, we will take over
    	// leadership even if their is another un-expired leader.
    	//
    	// This can be used to implemented a prioritized leader election. For example, if multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/strings/replace.go

    		}
    		// The first occurrence of old->new map takes precedence
    		// over the others with the same old string.
    		for i := len(oldnew) - 2; i >= 0; i -= 2 {
    			o := oldnew[i][0]
    			n := oldnew[i+1][0]
    			r[o] = n
    		}
    		return &r
    	}
    
    	r := byteStringReplacer{toReplace: make([]string, 0, len(oldnew)/2)}
    	// The first occurrence of old->new map takes precedence
    	// over the others with the same old string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/config/config.go

    // All labels and annotations in the list must match.
    // All fields are optional, if they are not specified, all values match.
    // Pattern matching style is glob.
    // Exclusions have a higher precedence than inclusions.
    // Ordering defines pod priority for cases where the archive exceeds the maximum
    // size and some logs must be dropped.
    //
    // Examples:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. 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)
  10. src/os/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	if _, err := f.Write([]byte("appended some data\n")); err != nil {
    		f.Close() // ignore error; Write error takes precedence
    		log.Fatal(err)
    	}
    	if err := f.Close(); err != nil {
    		log.Fatal(err)
    	}
    }
    
    func ExampleChmod() {
    	if err := os.Chmod("some-filename", 0644); err != nil {
    		log.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top