Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 563 for greater (0.18 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedSet.java

      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by the reverse
       * of their natural ordering.
       */
      public static <E extends Comparable<?>> Builder<E> reverseOrder() {
        return new Builder<>(Collections.reverseOrder());
      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by their
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      // Use step_id zero as we only have a single context concurrently and
      // concurrently running each of the MLIR functions create a new device.
      step_container_ = std::make_unique<tensorflow::ScopedStepContainer>(
          /*step_id=*/0, cleanup);
      absl::Status status = step_container_->Create(
          device_->resource_manager(),
          tensorflow::XlaContext::kXlaContextResourceName, context_);
      if (!status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf_test.go

    	for i, s := range symbols {
    		if elf.ST_BIND(s.Info) != elf.STB_LOCAL {
    			numLocalSymbols = uint32(i + 1)
    			break
    		}
    	}
    
    	if section.Info != numLocalSymbols {
    		t.Fatalf("Unexpected sh info, want greater than 0, got: %d", section.Info)
    	}
    }
    
    func TestNoDuplicateNeededEntries(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	// run this test on just a small set of platforms (no need to test it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

                if (parsedVersion < MINIMUM_VERSION_SUPPORTED_BY_FOOJAY_API) {
                    throw new GradleException("Target Java version: '" + version + "' is not a supported target version. It must be equal to or greater than " + MINIMUM_VERSION_SUPPORTED_BY_FOOJAY_API);
                }
                return JavaLanguageVersion.of(parsedVersion);
            } catch (NumberFormatException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. pkg/registry/apps/statefulset/strategy_test.go

    		if len(errs) == 0 {
    			t.Errorf("expected failure when MinReadySeconds is not positive number but got no error %v", errs)
    		}
    		expectedCreateErrorString := "spec.minReadySeconds: Invalid value: -1: must be greater than or equal to 0"
    		if errs[0].Error() != expectedCreateErrorString {
    			t.Errorf("mismatched error string %v", errs[0].Error())
    		}
    		// Test updation
    		newMinReadySeconds := int32(50)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. src/crypto/rsa/pkcs1v15.go

    // ciphertext. Most applications should use [crypto/rand.Reader]
    // as random. Note that the returned ciphertext does not depend
    // deterministically on the bytes read from random, and may change
    // between calls and/or between versions.
    //
    // WARNING: use of this function to encrypt plaintexts other than
    // session keys is dangerous. Use RSA OAEP in new protocols.
    func EncryptPKCS1v15(random io.Reader, pub *PublicKey, msg []byte) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/hash/maphash/smhasher_test.go

    	sparse(t, h, 256, 3)
    	sparse(t, h, 2048, 2)
    }
    func sparse(t *testing.T, h *hashSet, n int, k int) {
    	b := make([]byte, n/8)
    	setbits(h, b, 0, k)
    	h.check(t)
    }
    
    // set up to k bits at index i and greater
    func setbits(h *hashSet, b []byte, i int, k int) {
    	h.addB(b)
    	if k == 0 {
    		return
    	}
    	for j := i; j < len(b)*8; j++ {
    		b[j/8] |= byte(1 << uint(j&7))
    		setbits(h, b, j+1, k-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/kubelet/userns/userns_manager.go

    	"k8s.io/kubernetes/pkg/registry/core/service/allocator"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    // length for the user namespace to create (65536).
    const userNsLength = (1 << 16)
    
    // Create a new map when we removed enough pods to avoid memory leaks
    // since Go maps never free memory.
    const mapReInitializeThreshold = 1000
    
    type userNsPodsManager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Iterables.java

       *
       * @param position position of the element to return
       * @return the element at the specified position in {@code iterable}
       * @throws IndexOutOfBoundsException if {@code position} is negative or greater than or equal to
       *     the size of {@code iterable}
       */
      @ParametricNullness
      public static <T extends @Nullable Object> T get(Iterable<T> iterable, int position) {
        checkNotNull(iterable);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. pkg/test/framework/suite.go

    			if err != nil {
    				return fmt.Errorf("failed to get Kubernetes version: %v", err)
    			}
    			if !kubelib.IsAtLeastVersion(c, minorVersion) {
    				s.Skip(fmt.Sprintf("Required Kubernetes version (1.%v) is greater than current: %v",
    					minorVersion, ver.String()))
    			}
    		}
    		return nil
    	}
    
    	s.requireFns = append(s.requireFns, fn)
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top