Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,174 for tuning (0.11 sec)

  1. pkg/kubelet/cm/devicemanager/types.go

    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Manager manages all the Device Plugins running on a node.
    type Manager interface {
    	// Start starts device plugin registration service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

    task sleep {
        doLast {
            println 'taking a nap...'
            Thread.sleep(10000)
            println 'finished the nap...'
        }
    }
    """
    
            when:
            def sleeper = executer.withArguments('-i').withTasks('sleep').start()
    
            then:
            poll(60) {
                assert readLog(executer.daemonBaseDir).contains("taking a nap...")
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractIdleService.java

    import java.util.concurrent.Executor;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    
    /**
     * Base class for services that do not need a thread while "running" but may need one during startup
     * and shutdown. Subclasses can implement {@link #startUp} and {@link #shutDown} methods, each which
     * run in an executor which by default uses a separate thread for each method.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. src/regexp/example_test.go

    	fmt.Println(re.MatchString("Alan Turing"))
    	fmt.Printf("%q\n", re.SubexpNames())
    	reversed := fmt.Sprintf("${%s} ${%s}", re.SubexpNames()[2], re.SubexpNames()[1])
    	fmt.Println(reversed)
    	fmt.Println(re.ReplaceAllString("Alan Turing", reversed))
    	// Output:
    	// true
    	// ["" "first" "last"]
    	// ${last} ${first}
    	// Turing Alan
    }
    
    func ExampleRegexp_SubexpIndex() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. RELEASE.md

            replicas taking part in sync training.
        *   Performance improvements for GPU multi-worker distributed training using
            `tf.distribute.experimental.MultiWorkerMirroredStrategy`
        *   Update NVIDIA `NCCL` to `2.5.7-1` for better performance and performance
            tuning. Please see
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

    ## Known Issues
    
    * If you need to downgrade from 1.10 to 1.9.x, downgrade to v1.9.6 to ensure PV and PVC objects can be deleted properly.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		return nil
    	}
    
    	var errs []error
    
    	// If the coredns ConfigMap is missing, show a warning and assume that the
    	// DNS addon was skipped during "kubeadm init", and that its redeployment on upgrade is not desired.
    	//
    	// TODO: remove this once "kubeadm upgrade apply" phases are supported:
    	//   https://github.com/kubernetes/kubeadm/issues/1318
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      import_config.upgrade_legacy = true;
      // Disable shape inference during import as some TensorFlow op fails during
      // shape inference with dynamic shaped operands. This in turn causes the
      // import to fail. Shape inference during import is going to be removed and
      // the shape inference pass is run early in the pass pipeline, shape inference
      // during import is not necessary.
      import_config.enable_shape_inference = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top