Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,409 for turning (0.14 sec)

  1. cluster/gce/config-test.sh

    NODE_DISK_SIZE=${NODE_DISK_SIZE:-100GB}
    NODE_LOCAL_SSDS=${NODE_LOCAL_SSDS:-0}
    NODE_LABELS=${KUBE_NODE_LABELS:-}
    WINDOWS_NODE_LABELS=${WINDOWS_NODE_LABELS:-}
    NODE_LOCAL_SSDS_EPHEMERAL=${NODE_LOCAL_SSDS_EPHEMERAL:-}
    # Turning GRPC based Konnectivity testing on id advance of
    # removing the SSHTunnel code.
    export KUBE_ENABLE_EGRESS_VIA_KONNECTIVITY_SERVICE=true
    export PREPARE_KONNECTIVITY_SERVICE="${KUBE_ENABLE_KONNECTIVITY_SERVICE:-true}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. src/runtime/signal_unix.go

    			// If we change to SIG_DFL when turning off profiling, the
    			// program will crash when that SIGPROF is delivered. We assume
    			// that programs that use profiling don't want to crash on a
    			// stray SIGPROF. See issue 19320.
    			// We do the change here instead of when turning off profiling,
    			// because there we may race with a signal handler running
    			// concurrently, in particular, sigfwdgo may observe _SIG_DFL and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    )
    
    // This table records the specific values we use to adjust call
    // site scores in a given scenario.
    // NOTE: these numbers are chosen very arbitrarily; ideally
    // we will go through some sort of turning process to decide
    // what value for each one produces the best performance.
    
    var adjValues = map[scoreAdjustTyp]int{
    	panicPathAdj:                          40,
    	initFuncAdj:                           20,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    // an opportunity to encode any nested Objects / RawExtensions during serialization.
    type NestedObjectEncoder interface {
    	EncodeNestedObjects(e Encoder) error
    }
    
    // NestedObjectDecoder is an optional interface that objects may implement to be given
    // an opportunity to decode any nested Objects / RawExtensions during serialization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. src/runtime/hash_test.go

    }
    
    func TestIssue66841(t *testing.T) {
    	testenv.MustHaveExec(t)
    	if *UseAeshash && os.Getenv("TEST_ISSUE_66841") == "" {
    		// We want to test the backup hash, so if we're running on a machine
    		// that uses aeshash, exec ourselves while turning aes off.
    		cmd := testenv.CleanCmdEnv(testenv.Command(t, os.Args[0], "-test.run=^TestIssue66841$"))
    		cmd.Env = append(cmd.Env, "GODEBUG=cpu.aes=off", "TEST_ISSUE_66841=1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. cmd/common-main.go

    	gob.Register(map[string]string{})
    	gob.Register(map[string]interface{}{})
    
    	// All minio-go and madmin-go API operations shall be performed only once,
    	// another way to look at this is we are turning off retries.
    	minio.MaxRetry = 1
    	madmin.MaxRetry = 1
    
    	currentReleaseTime, _ = GetCurrentReleaseTime()
    }
    
    const consolePrefix = "CONSOLE_"
    
    func minioConfigToConsoleFeatures() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    A good strategy is to make all ambiguous statements property assignments first and then fix the build by turning the failing ones to function invocations.
    
    For example,
    
    [.multi-language-sample]
    ====
    .build.gradle
    =====
    [source,groovy]
    ----
    group "com.acme"
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/term/terminal.go

    		// of the latter because they have doubled every full line.
    
    		// We assume that we are working on a terminal that wraps lines
    		// and adjust the cursor position based on every previous line
    		// wrapping and turning into two. This causes the prompt on
    		// xterms to move upwards, which isn't great, but it avoids a
    		// huge mess with gnome-terminal.
    		if t.cursorX >= t.termWidth {
    			t.cursorX = t.termWidth - 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat.go

    			// position of the product of that digit, and T[n+i] is the final carry.
    			// Note that T[i] isn't modified after processing the i-th digit.
    			//
    			// Instead of running two loops, one for Step 1 and one for Steps 2–6,
    			// the result of Step 1 is computed during the next loop. This is
    			// possible because each iteration only uses T[i] in Step 2 and then
    			// discards it in Step 6.
    			d := bLimbs[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    Test compile classpath, used when compiling test sources. Used by task `compileTestJava`.
    
    `testRuntimeOnly` extends `runtimeOnly`::
    Runtime only dependencies for running tests.
    
    `testRuntimeClasspath` extends `testRuntimeOnly, testImplementation`::
    Runtime classpath for running tests. Used by task `test`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top