Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 189 for integers (0.42 sec)

  1. pkg/controller/statefulset/stateful_pod_control_test.go

    	podIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
    	gooPod := newStatefulSetPod(set, 0)
    	gooPod.Name = "goo-0"
    	podIndexer.Add(gooPod)
    	podLister := corelisters.NewPodLister(podIndexer)
    	claimIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    									t.Errorf("unexpected output:\n%s", diff)
    								}
    							}
    						})
    					}
    				})
    			}
    		})
    	}
    
    	group(t, "unsigned integer", []test{
    		{
    			name:          "unsigned integer decodes to interface{} as int64",
    			in:            hex("0a"), // 10
    			want:          int64(10),
    			assertOnError: assertNilError,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            updateConfigListenerMap.put("Label", () -> Integer.toString(ComponentUtil.getLabelTypeHelper().load()));
            updateConfigListenerMap.put("PathMapping", () -> Integer.toString(ComponentUtil.getPathMappingHelper().load()));
            updateConfigListenerMap.put("RelatedContent", () -> Integer.toString(ComponentUtil.getRelatedContentHelper().load()));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	//          properties:
    	//            key:
    	//              type: string
    	//            values:
    	//              type: array
    	//              items: string
    	//     value:
    	//       type: integer
    	//       format: int64
    	//       default: 1
    	//       enum: [1,2,3]
    	ts := &schema.Structural{
    		Generic: schema.Generic{
    			Type: "object",
    		},
    		Properties: map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	w.RLock()
    	defer w.RUnlock()
    
    	return w.getAllEventsSinceLocked(resourceVersion, "", opts)
    }
    
    // newTestWatchCache just adds a fake clock.
    func newTestWatchCache(capacity int, indexers *cache.Indexers) *testWatchCache {
    	keyFunc := func(obj runtime.Object) (string, error) {
    		return storage.NamespaceKeyFunc("prefix", obj)
    	}
    	getAttrsFunc := func(obj runtime.Object) (labels.Set, fields.Set, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    // * IntOrString: for `x-kubernetes-int-or-string: true` either `type` is empty under `anyOf` and `allOf` or the schema structure is one of these:
    //
    //  1. anyOf:
    //     - type: integer
    //     - type: string
    //  2. allOf:
    //     - anyOf:
    //     - type: integer
    //     - type: string
    //     - ... zero or more
    //
    // * every specified field or array in s is also specified outside of value validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

    @ThreadSafe
    public class DeprecationLogger {
    
        /**
         * Counts the levels of nested {@code whileDisabled} invocations.
         */
        private static final ThreadLocal<Integer> DISABLE_COUNT = new ThreadLocal<Integer>() {
            @Override
            protected Integer initialValue() {
                return 0;
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

    - Method mutate(java.lang.String, java.lang.Integer) is not a valid rule method: Rule parameter #2 should not be annotated with @Each."""
        }
    
        static class InvalidEachAndPathAnnotation extends RuleSource {
            @Mutate
            void valid(@Path("value") String value, Integer input) {}
    
            @Mutate
            void invalid(@Each @Path("value") String value, Integer input) {}
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

      require(millis <= Integer.MAX_VALUE) { "$name too large" }
      require(millis != 0L || duration <= 0L) { "$name too small" }
      return millis.toInt()
    }
    
    internal fun checkDuration(
      name: String,
      duration: Duration,
    ): Int {
      check(!duration.isNegative()) { "$name < 0" }
      val millis = duration.inWholeMilliseconds
      require(millis <= Integer.MAX_VALUE) { "$name too large" }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        checkBigIntegerConversion("0.0.0.1", BigInteger.ONE);
        checkBigIntegerConversion("127.255.255.255", BigInteger.valueOf(Integer.MAX_VALUE));
        checkBigIntegerConversion(
            "255.255.255.254", BigInteger.valueOf(Integer.MAX_VALUE).multiply(BigInteger.valueOf(2)));
        checkBigIntegerConversion(
            "255.255.255.255", BigInteger.ONE.shiftLeft(32).subtract(BigInteger.ONE));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top