Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,266 for max8 (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java

        public Integer crudMode;
    
        @Size(max = 100)
        public String hostname;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer port;
    
        @Size(max = 10)
        public String protocolScheme;
    
        @Required
        @Size(max = 100)
        public String username;
    
        @Size(max = 100)
        public String password;
    
        @Size(max = 1000)
        public String parameters;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

    // MIN-MAX-CHECK-NEXT:  return
    
    // MIN-MAX-CHECK: func @composite_conv2d_with_relu6_fn
    // MIN-MAX-CHECK-NEXT:  "tf.Conv2D"
    // MIN-MAX-CHECK-NEXT:  "tf.Relu6"
    // MIN-MAX-CHECK-NEXT:  return
    
    // CalibrationOptions(calibration_method=CALIBRATION_METHOD_AVERAGE_MIN_MAX)
    // AVERAGE-MIN-MAX-CHECK: func @wrap_composite_func
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/templates/root-project/pom.xml

                                    println "heap: \${format(heap.used)} (initial \${format(heap.init)}, committed \${format(heap.committed)}, max \${format(heap.max)}"
                                    println "nonHeap: \${format(nonHeap.used)} (initial \${format(nonHeap.init)}, committed \${format(nonHeap.committed)}, max \${format(nonHeap.max)}"
    
                                    ManagementFactory.memoryMXBean.gc()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/math/dim.go

    		return 0
    	}
    	// v is positive or NaN
    	return v
    }
    
    // Max returns the larger of x or y.
    //
    // Special cases are:
    //
    //	Max(x, +Inf) = Max(+Inf, x) = +Inf
    //	Max(x, NaN) = Max(NaN, x) = NaN
    //	Max(+0, ±0) = Max(±0, +0) = +0
    //	Max(-0, -0) = -0
    //
    // Note that this differs from the built-in function max when called
    // with NaN and +Inf.
    func Max(x, y float64) float64 {
    	if haveArchMax {
    		return archMax(x, y)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 15 19:45:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/main/resources/log4j2.xml

    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    		<Property name="backup.max.age" value="90" />
    		<Property name="backup.audit.max.age" value="360" />
    		<Property name="backup.searchlog.max.age" value="90" />
    		<Property name="audit.log.pattern" value="%msg%n" />
    		<Property name="searchlog.log.pattern" value="%msg%n" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ReverseOrdering.java

        return forwardOrder.max(iterator);
      }
    
      @Override
      public <E extends T> E min(Iterable<E> iterable) {
        return forwardOrder.max(iterable);
      }
    
      @Override
      public <E extends T> E max(@ParametricNullness E a, @ParametricNullness E b) {
        return forwardOrder.min(a, b);
      }
    
      @Override
      public <E extends T> E max(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 14:22:42 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  7. test/typeparam/list.go

    }
    
    const Clip = 5
    
    // ClippedLargest returns the largest in the list of OrderNums, but a max of 5.
    // Test use of untyped constant in an expression with a generically-typed parameter
    func (l *_ListNum[T]) ClippedLargest() T {
    	var max T
    	for p := l; p != nil; p = p.next {
    		if p.val > max && p.val < Clip {
    			max = p.val
    		}
    	}
    	return max
    }
    
    func main() {
    	i3 := &_List[int]{nil, 1}
    	i2 := &_List[int]{i3, 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. pkg/registry/core/service/allocator/bitmap.go

    // necessary).
    type randomScanStrategy struct {
    	rand *rand.Rand
    }
    
    func (rss randomScanStrategy) AllocateBit(allocated *big.Int, max, count int) (int, bool) {
    	if count >= max {
    		return 0, false
    	}
    	offset := rss.rand.Intn(max)
    	for i := 0; i < max; i++ {
    		at := (offset + i) % max
    		if allocated.Bit(at) == 0 {
    			return at, true
    		}
    	}
    	return 0, false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. cmd/api-resources.go

    func getListObjectsV1Args(values url.Values) (prefix, marker, delimiter string, maxkeys int, encodingType string, errCode APIErrorCode) {
    	errCode = ErrNone
    
    	if values.Get("max-keys") != "" {
    		var err error
    		if maxkeys, err = strconv.Atoi(values.Get("max-keys")); err != nil {
    			errCode = ErrInvalidMaxKeys
    			return
    		}
    	} else {
    		maxkeys = maxObjectList
    	}
    
    	prefix = values.Get("prefix")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 07 18:25:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/go/doc/comment/wrap_test.go

    	for n := 1; n <= len(words) && !t.Failed(); n++ {
    		t.Run(fmt.Sprint("n=", n), func(t *testing.T) {
    			words := words[:n]
    			t.Logf("words: %v", words)
    			for max := 1; max < 100 && !t.Failed(); max++ {
    				t.Run(fmt.Sprint("max=", max), func(t *testing.T) {
    					seq := wrap(words, max)
    
    					// Compute score for seq.
    					start := 0
    					score := int64(0)
    					if len(seq) == 0 {
    						t.Fatalf("wrap seq is empty")
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top