Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,205 for okdown (0.14 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                            // known maximally specific, so remove the old maximum.
                            maximal.remove();
                            break;
    
                        case LESS_SPECIFIC:
                            // This method is less specific than some of the
                            // currently known maximally specific methods, so we
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. src/runtime/mpallocbits.go

    			// Shrink all runs of zeros by p places (except the top zeros).
    			for p > 0 {
    				if p <= k {
    					// Shift p ones down into the top of each run of zeros.
    					x |= x >> (p & 63)
    					if x&(x+1) == 0 { // no more zeros (except at the top).
    						continue outer
    					}
    					break
    				}
    				// Shift k ones down into the top of each run of zeros.
    				x |= x >> (k & 63)
    				if x&(x+1) == 0 { // no more zeros (except at the top).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    		// At the least, we have a hash prefix we can look up after the fetch below.
    		// Maybe we can map it to a full hash using the known refs.
    		prefix := rev
    		// Check whether rev is prefix of known ref hash.
    		for k, h := range refs {
    			if strings.HasPrefix(h, prefix) {
    				if hash != "" && hash != h {
    					// Hash is an ambiguous hash prefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/writebarrier.go

    	"fmt"
    	"internal/buildcfg"
    )
    
    // A ZeroRegion records parts of an object which are known to be zero.
    // A ZeroRegion only applies to a single memory state.
    // Each bit in mask is set if the corresponding pointer-sized word of
    // the base object is known to be zero.
    // In other words, if mask & (1<<i) != 0, then [base+i*ptrSize, base+(i+1)*ptrSize)
    // is known to be zero.
    type ZeroRegion struct {
    	base *Value
    	mask uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    // If known.Verifier returns an UnknownVerifierError,
    // Open records the signature in the returned note's UnverifiedSigs field.
    // If known.Verifier returns any other error, Open returns that error.
    //
    // If no known verifier has signed an otherwise valid note,
    // Open returns an [UnverifiedNoteError].
    // In this case, the unverified note can be fetched from inside the error.
    func Open(msg []byte, known Verifiers) (*Note, error) {
    	if known == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    )
    
    // All tests in this file use an alternative set of `known` component configs.
    // In this case it's just one known config and it's kubeadm's very own ClusterConfiguration.
    // ClusterConfiguration is normally not managed by this package. It's only used, because of the following:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

        double twoToThe53 = Math.pow(2, 53);
        // the representable doubles are 2^53 and 2^53 + 2.
        // 2^53+1 is halfway between, so HALF_UP will go up and HALF_DOWN will go down.
        new RoundToDoubleTester(BigDecimal.valueOf((1L << 53) + 1))
            .setExpectation(twoToThe53, DOWN, FLOOR, HALF_DOWN, HALF_EVEN)
            .setExpectation(Math.nextUp(twoToThe53), CEILING, UP, HALF_UP)
            .roundUnnecessaryShouldThrow()
            .test();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Traverser.java

          };
        }
    
        final Iterator<N> breadthFirst(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.BACK);
        }
    
        final Iterator<N> preOrder(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.FRONT);
        }
    
        /**
         * In top-down traversal, an ancestor node is always traversed before any of its descendant
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/Traverser.java

          };
        }
    
        final Iterator<N> breadthFirst(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.BACK);
        }
    
        final Iterator<N> preOrder(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.FRONT);
        }
    
        /**
         * In top-down traversal, an ancestor node is always traversed before any of its descendant
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  10. pkg/controller/deployment/rolling.go

    			// cannot scale down this ReplicaSet.
    			continue
    		}
    		// Scale down.
    		scaleDownCount := min(*(targetRS.Spec.Replicas), totalScaleDownCount-totalScaledDown)
    		newReplicasCount := *(targetRS.Spec.Replicas) - scaleDownCount
    		if newReplicasCount > *(targetRS.Spec.Replicas) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top