Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,374 for startm (0.94 sec)

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

            this.file = file;
            bufferedOutputStream = new ResettableBufferedOutputStream(new RandomAccessFileOutputStream(file));
        }
    
        /**
         * Starts writing to the given offset. Can be beyond the current length of the file.
         */
        public DataOutputStream start(long offset) throws IOException {
            file.seek(offset);
            bufferedOutputStream.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.4K 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. 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)
  4. releasenotes/notes/alt-stat-name.yaml

    Rama Chavali <******@****.***> 1716199771 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 10:09:31 UTC 2024
    - 184 bytes
    - Viewed (0)
  5. pkg/controller/cronjob/utils.go

    	//
    	// However, if there is a bug somewhere, or incorrect clock
    	// on controller's server or apiservers (for setting creationTimestamp)
    	// then there could be so many missed start times (it could be off
    	// by decades or more), that it would eat up all the CPU and memory
    	// of this controller. In that case, we want to not try to list
    	// all the missed start times.
    	//
    	// I've somewhat arbitrarily picked 100, as more than 80,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/kube/kclient/interfaces.go

    	// to the underlying informer are not touched
    	ShutdownHandlers()
    	// Start starts just this informer. Typically, this is not used. Instead, the `kube.Client.Run()` is
    	// used to start all informers at once.
    	// However, in some cases we need to run individual informers directly.
    	// This function should only be called once. It does not wait for the informer to become ready nor does it block,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/internal/trace/event/go122/event.go

    	EvGoCreateBlocked // goroutine creation (starts blocked) [timestamp, new goroutine ID, new stack ID, stack ID]
    
    	// GoStatus with stack. Added in Go 1.23.
    	EvGoStatusStack // 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. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        // Once the root build starts configuring, we are in Configuring phase
                        phaseStarted(startEvent, Phase.Configuring);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_BUILD && currentPhase == Phase.Configuring) {
                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. pkg/kube/multicluster/cluster.go

    	// This must be done before we build components, so they can access the filter.
    	namespaces := kclient.New[*corev1.Namespace](c.Client)
    	// This will start a namespace informer and wait for it to be ready. So we must start it in a go routine to avoid blocking.
    	filter := filter.NewDiscoveryNamespacesFilter(namespaces, mesh, c.stop)
    	kube.SetObjectFilter(c.Client, filter)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. 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)
Back to top