Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,772 for startm (0.11 sec)

  1. releasenotes/notes/send-stat.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 12 16:23:08 UTC 2020
    - 178 bytes
    - Viewed (0)
  2. 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)
  3. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

        /**
         * Appends a formatted string using the current style and starts a new line.
         *
         * @param pattern The pattern string
         * @param args    The args for the pattern
         * @return this
         */
        StyledTextOutput formatln(String pattern, Object... args);
    
        /**
         * Starts a new line.
         *
         * @return this
         */
        StyledTextOutput println();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. releasenotes/notes/destination-cluster-stats-label.yaml

    Pengyuan Bian <******@****.***> 1614875631 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 04 16:33:51 UTC 2021
    - 198 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/source.go

    func (s *source) error(msg string) {
    	line, col := s.pos()
    	s.errh(line, col, msg)
    }
    
    // start starts a new active source segment (including s.ch).
    // As long as stop has not been called, the active segment's
    // bytes (excluding s.ch) may be retrieved by calling segment.
    func (s *source) start()          { s.b = s.r - s.chw }
    func (s *source) stop()           { s.b = -1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			// alignment should be different from that of stextOffset.
    			return start - *stextOffset, true
    		}
    
    		return start - loadSegment.Vaddr, true
    	}
    	if start%pageSize != 0 && stextOffset != nil && *stextOffset%pageSize == start%pageSize {
    		// ChromeOS remaps its kernel to 0 + start%pageSize. Nothing
    		// else should come down this path. Empirical values:
    		//       start=0x198 limit=0x2f9fffff offset=0
    		//       VADDR=0xffffffff81000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    	p := fmt.Sprintf("@%s.sock", uuid.NewUUID())
    
    	return &testSocket{
    		path:     p,
    		endpoint: fmt.Sprintf("unix:///%s", p),
    	}
    }
    
    // TestKMSPluginLateStart tests the scenario where kms-plugin pod/container starts after kube-apiserver pod/container.
    // Since the Dial to kms-plugin is non-blocking we expect the construction of gRPC service to succeed even when
    // kms-plugin is not yet up - dialing happens in the background.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. releasenotes/notes/proxy-stats-inclusion.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 26546
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 15 20:22:21 UTC 2020
    - 159 bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

        }
    
        def "run as worker starts immediately when there are sufficient leases available"() {
            def registry = workerLeaseService(2)
    
            expect:
            async {
                start {
                    registry.runAsWorkerThread {
                        instant.worker1
                        thread.blockUntil.worker2
                    }
                }
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/operationexecutor/operation_executor_test.go

    		socketPath := fmt.Sprintf("%s/plugin-%d.sock", socketDir, i)
    		oe.RegisterPlugin(socketPath, time.Now(), nil /* plugin handlers */, nil /* actual state of the world updator */)
    	}
    	if !isOperationRunConcurrently(ch, quit, numPluginsToRegister) {
    		t.Fatalf("Unable to start register operations in Concurrent for plugins")
    	}
    }
    
    func TestOperationExecutor_RegisterPlugin_SerialRegisterPlugin(t *testing.T) {
    	ch, quit, oe := setup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top