Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,266 for max8 (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

          }
          double max = accumulator.max();
          double maxByAddAllStats = accumulatorByAddAllStats.max();
          if (values.hasAnyNaN()) {
            assertWithMessage("max of " + values).that(max).isNaN();
            assertWithMessage("max by addAll(Stats) of " + values).that(maxByAddAllStats).isNaN();
          } else if (values.hasAnyPositiveInfinity()) {
            assertWithMessage("max of " + values).that(max).isPositiveInfinity();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux_mipsx.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
    - 6.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java

     */
    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 100)
        public String name;
    
        @Required
        @Size(max = 1000)
        public String value;
    
        @Required
        @Size(max = 1000)
        public String webConfigId;
    
        @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.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/StatsTest.java

          } else if (values.hasAnyPositiveInfinity()) {
            assertWithMessage("max of " + values).that(max).isPositiveInfinity();
          } else {
            assertWithMessage("max of " + values).that(max).isEqualTo(MANY_VALUES_MAX);
          }
        }
        assertThat(MANY_VALUES_STATS_SNAPSHOT.max()).isEqualTo(MANY_VALUES_MAX);
        assertThat(INTEGER_MANY_VALUES_STATS_VARARGS.max()).isEqualTo(INTEGER_MANY_VALUES_MAX);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    		},
    		{
    			name: "uint16 max",
    			obj:  uint16(math.MaxUint16),
    		},
    		{
    			name: "uint16 zero",
    			obj:  uint16(0),
    		},
    		{
    			name: "int8 max",
    			obj:  int8(math.MaxInt8),
    		},
    		{
    			name: "int8 min",
    			obj:  int8(math.MinInt8),
    		},
    		{
    			name: "int8 zero",
    			obj:  int8(math.MinInt8),
    		},
    		{
    			name: "uint8 max",
    			obj:  uint8(math.MaxUint8),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class ActionForm {
        @Size(max = 10)
        public String replaceAliases;
    
        @Size(max = 10)
        public String resetDictionaries;
    
        @Size(max = 10)
        public String numberOfShardsForDoc = ComponentUtil.getFessConfig().getIndexNumberOfShards();
    
        @Size(max = 10)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/rand/rand.go

    	return rng.rand.Int()
    }
    
    // Intn generates an integer in range [0,max).
    // By design this should panic if input is invalid, <= 0.
    func Intn(max int) int {
    	rng.Lock()
    	defer rng.Unlock()
    	return rng.rand.Intn(max)
    }
    
    // IntnRange generates an integer in range [min,max).
    // By design this should panic if input is invalid, <= 0.
    func IntnRange(min, max int) int {
    	rng.Lock()
    	defer rng.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 11 11:02:01 UTC 2018
    - 3.5K bytes
    - Viewed (0)
Back to top