Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 211 for nextch (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

            int nextChar = next();
            if (nextChar == '\n') {
                return true; // '\\\n' discarded from stream
            } else if (nextChar == '\r') {
                int followingChar = next();
                if (followingChar == '\n') {
                    return true; // '\\\r\n' discarded from stream
                }
                pushBack(nextChar);
                pushBack(followingChar);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/build-cache/previous-next-scan.svg

    previous-next-scan.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top