Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,431 for tuning (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/configuration/configuration_manager.go

    	defaultBootstrapGraceperiod = 5 * time.Second
    )
    
    var (
    	ErrNotReady = fmt.Errorf("configuration is not ready")
    	ErrDisabled = fmt.Errorf("disabled")
    )
    
    type getFunc func() (runtime.Object, error)
    
    // When running, poller calls `get` every `interval`. If `get` is
    // successful, `Ready()` returns ready and `configuration()` returns the
    // `mergedConfiguration`; if `get` has failed more than `failureThreshold ` times,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 02:02:38 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    > Configure project :app
    BUILD SCRIPT: This is executed during the configuration phase       //<2>
    REGISTER TASK1: This is executed during the configuration phase     //<2>
    NAMED TASK1: This is executed during the configuration phase        //<2>
    
    > Task :app:task1
    NAMED TASK1 - doFirst: This is executed during the execution phase  //<3>
    NAMED TASK1 - doLast: This is executed during the execution phase   //<3>
    
    BUILD SUCCESSFUL in 25s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildlifecycle/basic/tests/buildlifecycle.out

    This is executed during the initialization phase.
    
    > Configure project :
    This is executed during the configuration phase.
    This is executed during the configuration phase as well, because :testBoth is used in the build.
    
    > Task :test
    This is executed during the execution phase.
    
    > Task :testBoth
    This is executed first during the execution phase.
    This is executed last during the execution phase.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 452 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildlifecycle/basic/groovy/build.gradle

    println 'This is executed during the configuration phase.'
    
    tasks.register('configured') {
        println 'This is also executed during the configuration phase, because :configured is used in the build.'
    }
    
    tasks.register('test') {
        doLast {
            println 'This is executed during the execution phase.'
        }
    }
    
    tasks.register('testBoth') {
    	doFirst {
    	  println 'This is executed first during the execution phase.'
    	}
    	doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_regexps.txt

    	})
    }
    -- z_test.go --
    package x
    
    import "testing"
    
    func TestZ(t *testing.T) {
    	t.Logf("LOG: Z running")
    }
    
    func TestXX(t *testing.T) {
    	t.Logf("LOG: XX running")
    }
    
    func BenchmarkZ(b *testing.B) {
    	b.Logf("LOG: Z running N=%d", b.N)
    }
    
    func BenchmarkXX(b *testing.B) {
    	b.Logf("LOG: XX running N=%d", b.N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/dist/main.go

    		// Solaris and illumos systems have multi-arch userlands, and
    		// "uname -m" reports the machine hardware name; e.g.,
    		// "i86pc" on both 32- and 64-bit x86 systems.  Check for the
    		// native (widest) instruction set on the running kernel:
    		out := run("", CheckExit, "isainfo", "-n")
    		if strings.Contains(out, "amd64") {
    			gohostarch = "amd64"
    		}
    		if strings.Contains(out, "i386") {
    			gohostarch = "386"
    		}
    	case "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    // Currently there are no known LIST calls during kubeadm init this code has to take care of.
    func (idr *InitDryRunGetter) HandleListAction(action core.ListAction) (bool, runtime.Object, error) {
    	return false, nil, nil
    }
    
    // handleKubernetesService returns a faked Kubernetes service in order to be able to continue running kubeadm init.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/TaskFileVarFactory.java

         * <p>The implementation may apply caching to the result, so that the matching files are calculated during file snapshotting and the result cached in memory for when it is queried again, either during task action execution or in order to calculate some other task input value.
         *
         * <p>Use this collection only for those files that are not expected to change during task execution, such as task inputs.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 07 03:00:19 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildlifecycle/basic/kotlin/build.gradle.kts

    println("This is executed during the configuration phase.")
    
    tasks.register("configured") {
        println("This is also executed during the configuration phase, because :configured is used in the build.")
    }
    
    tasks.register("test") {
        doLast {
            println("This is executed during the execution phase.")
        }
    }
    
    tasks.register("testBoth") {
        doFirst {
            println("This is executed first during the execution phase.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 638 bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       * UnsupportedOperationException.
       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
       * the {@code shutdownNow} method. First, "best-effort" with regards to canceling running tasks is
       * implemented as "no-effort". No interrupts or other attempts are made to stop threads executing
       * tasks. Second, the returned list will always be empty, as any submitted task is considered to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top