Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 503 for max8 (0.09 sec)

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

        @Required
        @Size(max = 100)
        public String term;
    
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String query;
    
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer maxSize;
    
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        @Size(max = 1000)
        public String virtualHost;
    
    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. src/syscall/syscall_linux_arm.go

    		rl.Cur = rlimInf32
    	} else if rlim.Cur < uint64(rlimInf32) {
    		rl.Cur = uint32(rlim.Cur)
    	} else {
    		return EINVAL
    	}
    	if rlim.Max == rlimInf64 {
    		rl.Max = rlimInf32
    	} else if rlim.Max < uint64(rlimInf32) {
    		rl.Max = uint32(rlim.Max)
    	} else {
    		return EINVAL
    	}
    
    	return setrlimit1(resource, &rl)
    }
    
    //go:nosplit
    func rawSetrlimit(resource int, rlim *Rlimit) Errno {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.cc

      // global_min will be updated by std::min(global_min, input_value) so
      // it is initialized with the value numeric_limits<float>::max().
      min_max_statistics_.set_global_min(std::numeric_limits<float>::max());
    
      // global_max will be updated by std::max(global_max, input_value) so it
      // is initialized with the value numeric_limits<float>::lowest().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java

            hibernateContext.disableDefaultConstraintViolation();
            hibernateContext.addMessageParameter("min", min).addMessageParameter("max", max).buildConstraintViolationWithTemplate(message)
                    .addConstraintViolation();
            final int length = value.length();
            return length >= min && length <= max;
        }
    
        private void validateParameters() {
            if (min < 0) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. pkg/util/tail/tail.go

    	"os"
    )
    
    const (
    	// blockSize is the block size used in tail.
    	blockSize = 1024
    )
    
    // ReadAtMost reads at most max bytes from the end of the file identified by path or
    // returns an error. It returns true if the file was longer than max. It will
    // allocate up to max bytes.
    func ReadAtMost(path string, max int64) ([]byte, bool, error) {
    	f, err := os.Open(path)
    	if err != nil {
    		return nil, false, err
    	}
    	defer f.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ReverseNaturalOrdering.java

        return NaturalOrdering.INSTANCE.max(iterator);
      }
    
      @Override
      public <E extends Comparable<?>> E min(Iterable<E> iterable) {
        return NaturalOrdering.INSTANCE.max(iterable);
      }
    
      @Override
      public <E extends Comparable<?>> E max(E a, E b) {
        return NaturalOrdering.INSTANCE.min(a, b);
      }
    
      @Override
      public <E extends Comparable<?>> E max(E a, E b, E c, E... rest) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 14:22:42 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. cmd/dynamic-timeouts.go

    		// We are hitting the timeout relatively few times,
    		// so decrease the timeout towards 25 % of maximum time spent.
    		max = max * 125 / 100
    
    		timeout := atomic.LoadInt64(&dt.timeout)
    		if max < time.Duration(timeout) {
    			// Move 50% toward the max.
    			timeout = (int64(max) + timeout) / 2
    		}
    		if timeout < dt.minimum {
    			timeout = dt.minimum
    		}
    		atomic.StoreInt64(&dt.timeout, timeout)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 19 23:21:05 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/CreateForm.java

        public Integer crudMode;
    
        @Required
        @Size(max = 10000)
        public String term;
    
        @Required
        @Size(max = 10000)
        public String content;
    
        @Size(max = 1000)
        public String virtualHost;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer sortOrder;
    
        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

                        println "    Max Heap: " + memBean.heapMemoryUsage.max
    
                        // Java 8 does not report max heap size exactly matching the command line setting
                        if ($java9orAbove) {
                            assert memBean.heapMemoryUsage.max == 512 * 1024 * 1024
                        } else {
                            assert memBean.heapMemoryUsage.max > 256 * 1024 * 1024
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java

    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 10000)
        public String term;
    
        @Required
        @Size(max = 10000)
        public String queries;
    
        @Size(max = 1000)
        public String virtualHost;
    
        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
        public Long createdTime;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top