Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,174 for tuning (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     */
    
    /** @file
     *  Test run management functions (user interface).
     *  The TestRun module implements functions supporting the running
     *  of tests elements (suites and tests).  This includes functions for
     *  running suites and tests, retrieving the number of tests/suites run,
     *  and managing callbacks during the run process.<br /><br />
     *
     *  The callback mechanism works as follows.  The CUnit runtime system
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

     *       the callable itself nor to any {@code Future} returned by an {@code AsyncCallable}.
     *       (However, cancellation can prevent an <i>unstarted</i> task from running.) Therefore, the
     *       next task will wait for any running callable (or pending {@code Future} returned by an
     *       {@code AsyncCallable}) to complete, without interrupting it (and without calling {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    		}
    	}
    	for _, pth := range [][]string{
    		{"metadata", "unspecified"},
    
    		{"pruning", "unspecified"},
    		{"pruning", "unspecifiedObject"},
    		{"pruning", "unspecifiedObject", "unspecified"},
    		{"pruning", "pruning", "unspecified"},
    
    		{"preserving", "pruning", "unspecified"},
    	} {
    		if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, pth...); found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/cache/hash.go

    	name string        // for debugging
    	buf  *bytes.Buffer // for verify
    }
    
    // hashSalt is a salt string added to the beginning of every hash
    // created by NewHash. Using the Go version makes sure that different
    // versions of the go command (or even different Git commits during
    // work on the development branch) do not address the same cache
    // entries, so that a bug in one version does not affect the execution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 16:18:34 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // output when using cached compiler results will confuse bisect.
    // To defeat such build caches, bisect replaces the literal text “RANDOM”
    // in environment values and command arguments with a random 64-bit value
    // during each invocation. The Go compiler conveniently accepts a
    // -d=ignore=... debug flag that ignores its argument, so to run the
    // previous example using Bazel, the invocation is:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    using mlir::OpPassManager;
    using mlir::func::FuncOp;
    
    // Adds replicated Bridge clustering pipeline passes to the given pass_manager.
    // Does not run them.
    void AddReplicatedBridgeClusteringPipelinePasses(OpPassManager& pm,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
Back to top