Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,644 for starts (0.87 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/skipnonapplied.go

    func NewSkipNonAppliedManager(fieldManager Manager, objectCreater runtime.ObjectCreater) Manager {
    	return NewProbabilisticSkipNonAppliedManager(fieldManager, objectCreater, 0.0)
    }
    
    // NewProbabilisticSkipNonAppliedManager creates a new wrapped FieldManager that starts tracking managers after the first apply,
    // or starts tracking on create with p probability.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadClassLoaderRegistry.java

     * <p>Implementations must allow concurrent sessions.
     */
    @ThreadSafe
    public interface PayloadClassLoaderRegistry {
        /**
         * Starts serializing an object graph.
         * The returned value is not required to be thread-safe.
         */
        SerializeMap newSerializeSession();
    
        /**
         * Starts deserializing an object graph.
         * The returned value is not required to be thread-safe.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kubelet/util/node_startup_latency_tracker_test.go

            # HELP kubelet_node_startup_pre_kubelet_duration_seconds [ALPHA] Duration in seconds of node startup before kubelet starts.
            # TYPE kubelet_node_startup_pre_kubelet_duration_seconds gauge
            kubelet_node_startup_pre_kubelet_duration_seconds 0
            # HELP kubelet_node_startup_pre_registration_duration_seconds [ALPHA] Duration in seconds of node startup before registration.
            # TYPE kubelet_node_startup_pre_registration_duration_seconds gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 05:54:25 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	b11.Event("GoStop", "whatever", testgen.NoStack)
    
    	g2 := t.Generation(2)
    
    	// Start running the goroutine, but later.
    	b21 := g2.Batch(trace.ThreadID(1), 3)
    	b21.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b21.Event("GoStart", trace.GoID(1), testgen.Seq(2))
    
    	// The goroutine starts running, then stops, then starts again.
    	b20 := g2.Batch(trace.ThreadID(0), 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/test/mockopenidserver.go

    		TLSCertFile: tlsCert,
    		TLSKeyFile:  tlsKey,
    	}
    
    	return server, server.Start()
    }
    
    // Start starts the mock server.
    func (ms *MockOpenIDDiscoveryServer) Start() error {
    	var handler http.Handler
    	router := mux.NewRouter()
    	router.HandleFunc("/.well-known/openid-configuration", ms.openIDCfg).Methods("GET")
    	router.HandleFunc("/oauth2/v3/certs", ms.jwtPubKey).Methods("GET")
    	handler = router
    	if ms.timeout != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

    class FilePropertyLifecycleIntegrationTest extends AbstractIntegrationSpec implements TasksWithInputsAndOutputs {
        def "task #annotation file property is implicitly finalized when task starts execution"() {
            buildFile << """
                class SomeTask extends DefaultTask {
                    ${annotation}
                    final RegularFileProperty prop = project.objects.fileProperty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  7. src/internal/filepathlite/path_windows.go

    		return uncLen(path, len(`\\.\UNC\`))
    
    	case pathHasPrefixFold(path, `\\.`) ||
    		pathHasPrefixFold(path, `\\?`) || pathHasPrefixFold(path, `\??`):
    		// Path starts with \\.\, and is a Local Device path; or
    		// path starts with \\?\ or \??\ and is a Root Local Device path.
    		//
    		// We treat the next component after the \\.\ prefix as
    		// part of the volume name, which means Clean(`\\?\c:\`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. tensorflow/cc/training/queue_runner.h

      Status StartAndCollectCostGraph(Session* sess,
                                      const RunOptions& run_options = RunOptions());
    
      /// Starts the queue runner with the given session, and wait for up to the
      /// specified time (in milliseconds) for the queues to start to fill up.
      Status Start(Session* sess, int wait_for_ms);
      Status StartAndCollectCostGraph(Session* session, int wait_for_ms,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. pkg/channels/unbounded_test.go

    // goroutine in the tests.
    var wantReads []int
    
    func init() {
    	for i := 0; i < numWriters; i++ {
    		for j := 0; j < numWrites; j++ {
    			wantReads = append(wantReads, i)
    		}
    	}
    }
    
    // TestSingleWriter starts one reader and one writer goroutine and makes sure
    // that the reader gets all the value added to the buffer by the writer.
    func TestSingleWriter(t *testing.T) {
    	ub := NewUnbounded[int]()
    	reads := []int{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

        def ops = new ProgressOperations()
    
        def "starts operation"() {
            when:
            def op = ops.start("compile", null, new OperationIdentifier(1), null)
    
            then:
            op.parent == null
            op.operationId.id == 1L
        }
    
        def "maintains operation hierarchy"() {
            when:
            def op1 = ops.start("compile", null, new OperationIdentifier(1), null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top