Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,374 for startm (0.16 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/ByteInput.java

            this.file = file;
            bufferedInputStream = new ResettableBufferedInputStream(new RandomAccessFileInputStream(file));
        }
    
        /**
         * Starts reading from the given offset.
         */
        public DataInputStream start(long offset) throws IOException {
            file.seek(offset);
            bufferedInputStream.clear();
            countingInputStream = new CountingInputStream(bufferedInputStream);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/traceevent.go

    	traceEvGoCreateBlocked // goroutine creation (starts blocked) [timestamp, new goroutine ID, new stack ID, stack ID]
    
    	// GoStatus with stack.
    	traceEvGoStatusStack // goroutine status at the start of a generation, with a stack [timestamp, goroutine ID, M ID, status, stack ID]
    
    	// Batch event for an experimental batch with a custom format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. cmd/bucket-replication-stats.go

    				Failed:          fstats.toMetric(),
    				FailStats:       fstats,
    				ReplicatedSize:  stat.ReplicatedSize + oldst.ReplicatedSize,
    				ReplicatedCount: stat.ReplicatedCount + oldst.ReplicatedCount,
    				Latency:         stat.Latency.merge(oldst.Latency),
    				XferRateLrg:     &lrg,
    				XferRateSml:     &sml,
    			}
    			totReplicatedSize += stat.ReplicatedSize
    			totReplicatedCount += stat.ReplicatedCount
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/runtime/mpallocbits.go

    func (b *pallocBits) summarize() pallocSum {
    	var start, most, cur uint
    	const notSetYet = ^uint(0) // sentinel for start value
    	start = notSetYet
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    		if x == 0 {
    			cur += 64
    			continue
    		}
    		t := uint(sys.TrailingZeros64(x))
    		l := uint(sys.LeadingZeros64(x))
    
    		// Finish any region spanning the uint64s
    		cur += t
    		if start == notSetYet {
    			start = cur
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_pgo.txt

    go build -x -pgo=prof -o triv.exe triv.go
    stderr 'preprofile.*-i.*prof'
    stderr 'compile.*-pgoprofile=.*triv.go'
    
    # check that PGO appears in build info
    # N.B. we can't start the stdout check with -pgo because the script assumes that
    # if the first arg starts with - it is a grep flag.
    go version -m triv.exe
    stdout 'build\s+-pgo=.*'${/}'prof'
    
    # store the build ID
    go list -export -json=BuildID -pgo=prof triv.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/envoy/agent.go

    	activeConnectionsURL := fmt.Sprintf("http://%s/stats?usedonly&filter=downstream_cx_active$", adminHost)
    	stats, err := http.DoHTTPGetWithTimeout(activeConnectionsURL, 2*time.Second)
    	if err != nil {
    		return -1, fmt.Errorf("unable to get listener stats from Envoy : %v", err)
    	}
    	if stats.Len() == 0 {
    		return -1, nil
    	}
    	activeConnections := 0
    	for stats.Len() > 0 {
    		line, _ := stats.ReadString('\n')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerControl.java

     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.process.ExecResult;
    
    public interface WorkerControl {
        /**
         * Starts the worker process, blocking until successfully started.
         */
        WorkerProcess start();
    
        /**
         * Requests that the worker complete all work and stop. Blocks until the worker process has stopped.
         */
        ExecResult stop();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/types.go

    )
    
    // Manager manages all the DRA resource plugins running on a node.
    type Manager interface {
    	// Start starts the reconcile loop of the manager.
    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    	// PrepareResources prepares resources for a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                thread.start()
                return thread
            } finally {
                lock.unlock()
            }
        }
    
        /**
         * Starts a thread which executes the given action/closure. Does not wait for the thread to complete.
         *
         * @return A handle to the test thread.
         */
        TestParticipant start(Runnable cl) {
            lock.lock()
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. src/runtime/debug/example_monitor_test.go

    	if err != nil {
    		log.Fatalf("StdinPipe: %v", err)
    	}
    	debug.SetCrashOutput(pipe.(*os.File), debug.CrashOptions{}) // (this conversion is safe)
    	if err := cmd.Start(); err != nil {
    		log.Fatalf("can't start monitor: %v", err)
    	}
    	// Now return and start the application proper...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top