Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 350 for greater (0.48 sec)

  1. android/guava/src/com/google/common/collect/CompactHashSet.java

      // TODO(user): cache all field accesses in local vars
    
      /** Creates an empty {@code CompactHashSet} instance. */
      public static <E extends @Nullable Object> CompactHashSet<E> create() {
        return new CompactHashSet<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code CompactHashSet} instance containing the elements of the given
       * collection in unspecified order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks.go

    	if err != nil {
    		return nil, []error{errors.Wrapf(err, "couldn't parse Kubernetes version %q", kubever.KubernetesVersion)}
    	}
    
    	// Checks if k8sVersion greater or equal than the first unsupported versions by current version of kubeadm,
    	// that is major.minor+1 (all patch and pre-releases versions included)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            try {
                waitingThreadNames.add(threadName);
                while (current >= percent) {
                    if (logger.isInfoEnabled()) {
                        logger.info("Cpu Load {}% is greater than {}%. {} waiting thread(s).", current, percent, waitingThreadNames.size());
                    }
                    if (logger.isDebugEnabled()) {
                        logger.debug("Waiting threads: {}", waitingThreadNames);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. cmd/object-api-utils_test.go

    		{"una ñina", false},
    		{"dash-.may-not-appear-next-to-dot", false},
    		{"dash.-may-not-appear-next-to-dot", false},
    		{"dash-.-may-not-appear-next-to-dot", false},
    		{"lalalallalallalalalallalallalala-thestring-size-is-greater-than-63", false},
    	}
    
    	for i, testCase := range testCases {
    		isValidBucketName := IsValidBucketName(testCase.bucketName)
    		if testCase.shouldPass && !isValidBucketName {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/net/netip/netip.go

    }
    
    // Prefix keeps only the top b bits of IP, producing a Prefix
    // of the specified length.
    // If ip is a zero [Addr], Prefix always returns a zero Prefix and a nil error.
    // Otherwise, if bits is less than zero or greater than ip.BitLen(),
    // Prefix returns an error.
    func (ip Addr) Prefix(b int) (Prefix, error) {
    	if b < 0 {
    		return Prefix{}, errors.New("negative Prefix bits")
    	}
    	effectiveBits := b
    	switch ip.z {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {
    	body := f.Body
    
    	if !strings.HasSuffix(file.Name.Name, "_test") {
    		// We don't support examples that are part of the
    		// greater package (yet).
    		return nil
    	}
    
    	// Collect top-level declarations in the file.
    	topDecls := make(map[*ast.Object]ast.Decl)
    	typMethods := make(map[string][]ast.Decl)
    
    	for _, decl := range file.Decls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/syscall/fs_wasip1.go

    		unsafe.Pointer(&nwritten),
    	)
    	// For some reason wasmtime returns ERANGE when the output buffer is
    	// shorter than the symbolic link value. os.Readlink expects a nil
    	// error and uses the fact that n is greater or equal to the buffer
    	// length to assume that it needs to try again with a larger size.
    	// This condition is handled in os.Readlink.
    	return int(nwritten), errnoErr(errno)
    }
    
    func Link(path, link string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm.go

    	if p256Equal(lhs, rhs) != 1 {
    		return errors.New("P256 point not on curve")
    	}
    	return nil
    }
    
    // p256LessThanP returns 1 if x < p, and 0 otherwise. Note that a p256Element is
    // not allowed to be equal to or greater than p, so if this function returns 0
    // then x is invalid.
    func p256LessThanP(x *p256Element) int {
    	var b uint64
    	_, b = bits.Sub64(x[0], p256P[0], b)
    	_, b = bits.Sub64(x[1], p256P[1], b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. pkg/volume/util/util.go

    	}
    
    	return true
    }
    
    // SetReady creates a file called 'ready' in the given
    // directory.  It logs an error if the file cannot be
    // created.
    func SetReady(dir string) {
    	if err := os.MkdirAll(dir, 0750); err != nil && !os.IsExist(err) {
    		klog.Errorf("Can't mkdir %s: %v", dir, err)
    		return
    	}
    
    	readyFile := filepath.Join(dir, readyFileName)
    	file, err := os.Create(readyFile)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top