Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 259 for nextch (0.24 sec)

  1. src/internal/trace/traceviewer/emitter.go

    	const PB = 1 << 50
    	if v > PB {
    		v = 0
    	}
    	e.heapStats.nextGC = v
    	e.emitHeapCounters(ts)
    }
    
    func (e *Emitter) emitHeapCounters(ts time.Duration) {
    	if e.prevHeapStats == e.heapStats {
    		return
    	}
    	diff := uint64(0)
    	if e.heapStats.nextGC > e.heapStats.heapAlloc {
    		diff = e.heapStats.nextGC - e.heapStats.heapAlloc
    	}
    	if e.tsWithinRange(ts) {
    		e.OptionalEvent(&format.Event{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/BigIntegerMath.java

        } else {
          BigInteger nextPow = BigInteger.TEN.multiply(approxPow);
          int nextCmp = nextPow.compareTo(x);
          while (nextCmp <= 0) {
            approxLog10++;
            approxPow = nextPow;
            approxCmp = nextCmp;
            nextPow = BigInteger.TEN.multiply(approxPow);
            nextCmp = nextPow.compareTo(x);
          }
        }
    
        int floorLog = approxLog10;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/syscall/exec_libc2.go

    		}
    		pipe = nextfd
    		nextfd++
    	}
    	for i = 0; i < len(fd); i++ {
    		if fd[i] >= 0 && fd[i] < i {
    			if nextfd == pipe { // don't stomp on pipe
    				nextfd++
    			}
    			if runtime.GOOS == "openbsd" {
    				_, _, err1 = rawSyscall(dupTrampoline, uintptr(fd[i]), uintptr(nextfd), O_CLOEXEC)
    			} else {
    				_, _, err1 = rawSyscall(dupTrampoline, uintptr(fd[i]), uintptr(nextfd), 0)
    				if err1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientForwardingTestOutputOperationListener.java

                InternalTestOutputDescriptor descriptor = new DefaultTestOutputDescriptor(new OperationIdentifier(idFactory.nextId()), buildOperationId);
                int destination = getDestination(progress.getOutput().getDestination());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/prog.go

    		}
    		return res, nil
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    }
    
    func (c *ProgCache) writeToChild(req *ProgRequest, resc chan<- *ProgResponse) (err error) {
    	c.mu.Lock()
    	c.nextID++
    	req.ID = c.nextID
    	c.inFlight[req.ID] = resc
    	c.mu.Unlock()
    
    	defer func() {
    		if err != nil {
    			c.mu.Lock()
    			delete(c.inFlight, req.ID)
    			c.mu.Unlock()
    		}
    	}()
    
    	c.writeMu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/ar.go

    	if _, err := io.ReadFull(f, magbuf[:]); err != nil {
    		Exitf("file %s too short", name)
    	}
    
    	if string(magbuf[:]) != ARMAG {
    		Exitf("%s is not an archive file", name)
    	}
    
    	var arhdr ArHdr
    	l := nextar(f, f.Offset(), &arhdr)
    	if l <= 0 {
    		Exitf("%s missing armap", name)
    	}
    
    	var armap archiveMap
    	if arhdr.name == "/" || arhdr.name == "/SYM64/" {
    		armap = readArmap(name, f, arhdr)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    	copy(builtinIdToTypeSlice[:], idToTypeSlice)
    
    	// Move the id space upwards to allow for growth in the predefined world
    	// without breaking existing files.
    	if nextId := len(idToTypeSlice); nextId > firstUserId {
    		panic(fmt.Sprintln("nextId too large:", nextId))
    	}
    	idToTypeSlice = idToTypeSlice[:firstUserId]
    	registerBasics()
    	wireTypeUserInfo = userType(wireTypeType)
    }
    
    // Array type
    type arrayType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildPhaseOperationListener.java

        }
    
        private DefaultBuildPhaseDescriptor toBuildOperationDescriptor(BuildOperationDescriptor buildOperation) {
            OperationIdentifier operationId = new OperationIdentifier(idFactory.nextId());
            OperationIdentifier parent = eventConsumer.findStartedParentId(buildOperation);
            String name = buildOperation.getName();
            String displayName = "Build phase: " + buildOperation.getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

    			err, description, jsonToYAMLOrError(patch), jsonToYAMLOrError(original))
    		return
    	}
    
    	if !reflect.DeepEqual(result, expected) {
    		format := "error in test case: %s\npatch application failed:\noriginal:\n%s\npatch:\n%s\nexpected:\n%s\ngot:\n%s\n"
    		t.Errorf(format, description,
    			jsonToYAMLOrError(original), jsonToYAMLOrError(patch),
    			jsonToYAMLOrError(expected), jsonToYAMLOrError(result))
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/DoubleUtils.java

     *
     * @author Louis Wasserman
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    final class DoubleUtils {
      private DoubleUtils() {}
    
      static double nextDown(double d) {
        return -Math.nextUp(-d);
      }
    
      // The mask for the significand, according to the {@link
      // Double#doubleToRawLongBits(double)} spec.
      static final long SIGNIFICAND_MASK = 0x000fffffffffffffL;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:37:52 UTC 2021
    - 5.1K bytes
    - Viewed (0)
Back to top