Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 555 for max8 (0.2 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

     *                aborting test runs, added CU_FAIL and CU_PASS macros. (JDS)
     *
     *  07-May-2005   Added CU_ prefix to remaining CUnit defines (BOOL, TRUE, 
     *                FALSE, MAX_...).  Added CU_UNREFERENCED_PARAMETER() define. (JDS)
     */
    
    /** @file
     * Basic CUnit include file for user and system code.
     * Defines macros for assertions for use in user test cases.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_GT_Y, "1.min", "0.max");
        }
    
        @Test
        void testMaximumSegment() {
            assertOrder(X_GT_Y, "1.max", "1.0-alpha-1");
            assertOrder(X_GT_Y, "1.max", "1.0-SNAPSHOT");
            assertOrder(X_GT_Y, "1.max", "1.0");
            assertOrder(X_GT_Y, "1.max", "1.9999999999");
    
            assertOrder(X_EQ_Y, "1.max", "1.MAX");
    
            assertOrder(X_LT_Y, "1.max", "2.0-alpha-1");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

      /**
       * Creates a new min-max priority queue with default settings: natural order, no maximum size, no
       * initial contents, and an initial expected size of 11.
       */
      public static <E extends Comparable<E>> MinMaxPriorityQueue<E> create() {
        return new Builder<Comparable<E>>(Ordering.natural()).create();
      }
    
      /**
       * Creates a new min-max priority queue using natural order, no maximum size, and initially
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/all.css

    }
    
    @media print {
        .col-md-9, .col-lg-7, .col-xl-8 {
            max-width: 83.2%;
            flex: 0 0 83.2%
        }
    
        .col-12 {
            max-width: 100%;
            flex: 0 0 100%
        }
    
        h1, h2, h3 {
            color: #000;
            background: none;
            page-break-after: avoid
        }
    
        img {
            max-width: 100% !important
        }
    
        pre, blockquote, img {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

          absl::Span<const int64_t> dims, float min = -100, float max = 100) {
        TF_ASSIGN_OR_RETURN(auto shape,
                            xla::ShapeUtil::MakeValidatedShape(xla::F32, dims));
        return xla::LiteralUtil::CreateLiteralWithGenerator<xla::F32, float>(
            shape, [this, min, max](absl::Span<const int64_t> dims) -> float {
              return absl::Uniform(bitgen_, min, max);
            });
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

                blockingServer.get(m4.jar.path).sendFile(m4.jar.file))
    
            expect:
            executer.withArguments('--max-workers', '4')
            succeeds("resolve")
        }
    
        def "parallel download honors max workers"() {
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Ints.java

       * @since 21.0
       */
      public static int constrainToRange(int value, int min, int max) {
        checkArgument(min <= max, "min (%s) must be less than or equal to max (%s)", min, max);
        return Math.min(Math.max(value, min), max);
      }
    
      /**
       * Returns the values from each provided array combined into a single array. For example, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    				if err.Value != nil {
    					value = err.Value
    				}
    				max := int64(-1)
    				if i, ok := err.Valid.(int64); ok {
    					max = i
    				}
    				allErrs = append(allErrs, field.TooLongMaxLength(errPath, value, int(max)))
    
    			case openapierrors.MaxItemsFailCode:
    				actual := int64(-1)
    				if i, ok := err.Value.(int64); ok {
    					actual = i
    				}
    				max := int64(-1)
    				if i, ok := err.Valid.(int64); ok {
    					max = i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/magic.go

    	m = m * (2 - m*d0) // 12-bits
    	m = m * (2 - m*d0) // 24-bits
    	m = m * (2 - m*d0) // 48-bits
    	m = m * (2 - m*d0) // 96-bits >= 64-bits
    	m = m & mask
    
    	max := mask / d
    
    	return udivisibleData{
    		k:   int64(k),
    		m:   m,
    		max: max,
    	}
    }
    
    func udivisible8(c int8) udivisibleData   { return udivisible(8, int64(c)) }
    func udivisible16(c int16) udivisibleData { return udivisible(16, int64(c)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-kubeapiserver.sh

        # If the cluster is large, increase max-requests-inflight limit in apiserver.
        if [[ "${NUM_NODES}" -gt 3000 ]]; then
          params=$(append-param-if-not-present "${params}" "max-requests-inflight" 3000)
          params=$(append-param-if-not-present "${params}" "max-mutating-requests-inflight" 1000)
        elif [[ "${NUM_NODES}" -gt 500 ]]; then
          params=$(append-param-if-not-present "${params}" "max-requests-inflight" 1500)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top