Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for greatest (0.22 sec)

  1. src/crypto/tls/common.go

    	// SupportedVersions lists the TLS versions supported by the client.
    	// For TLS versions less than 1.3, this is extrapolated from the max
    	// version advertised by the client, so values other than the greatest
    	// might be rejected if used.
    	SupportedVersions []uint16
    
    	// Conn is the underlying net.Conn for the connection. Do not read
    	// from, or write to, this connection; that will cause the TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    				for _, key := range tt.deletes {
    					store.Delete(gvk.EnvoyFilter, key.Name, key.Namespace, nil)
    					deletes.Insert(key)
    				}
    
    				createSet := sets.New(maps.Keys(creates)...)
    				updateSet := sets.New(maps.Keys(updates)...)
    				changes := deletes.Union(createSet).Union(updateSet)
    
    				pc2 := NewPushContext()
    				pc2.initEnvoyFilters(env, changes, pc1.envoyFiltersByNamespace)
    
    				total2 := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

            Optional[float],
            Doc(
                """
                Greater than. If set, value must be greater than this. Only applicable to
                numbers.
                """
            ),
        ] = None,
        ge: Annotated[
            Optional[float],
            Doc(
                """
                Greater than or equal. If set, value must be greater than or equal to
                this. Only applicable to numbers.
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        AntBuilder getAnt();
    
        /**
         * <p>Creates an additional <code>AntBuilder</code> for this project. You can use this in your build file to execute
         * ant tasks.</p>
         *
         * @return Creates an <code>AntBuilder</code> for this project. Never returns null.
         * @see #getAnt()
         */
        AntBuilder createAntBuilder();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        }
      }
    
      /**
       * Returns a builder that creates immutable sorted maps whose keys are ordered by their natural
       * ordering. The sorted maps use {@link Ordering#natural()} as the comparator.
       */
      public static <K extends Comparable<?>, V> Builder<K, V> naturalOrder() {
        return new Builder<>(Ordering.natural());
      }
    
      /**
       * Returns a builder that creates immutable sorted maps with an explicit comparator. If the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/validation/validation_test.go

    	}, {
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    			ScaleUp: &autoscaling.HPAScalingRules{
    				Policies: []autoscaling.HPAScalingPolicy{{
    					Type:          autoscaling.PodsScalingPolicy,
    					PeriodSeconds: 8,
    				}},
    			},
    		},
    		msg: "spec.behavior.scaleUp.policies[0].value: Invalid value: 0: must be greater than zero",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/options_test.go

    			options: &JobControllerOptions{
    				&jobconfig.JobControllerConfiguration{
    					ConcurrentJobSyncs: 0,
    				},
    			},
    		},
    		{
    			name:                   "CronJobControllerOptions ConcurrentCronJobSyncs equal 0",
    			expectErrors:           true,
    			expectedErrorSubString: "concurrent-cron-job-syncs must be greater than 0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

          Iterable<E> iterable, Class<E> elementType) {
        EnumSet<E> set = EnumSet.noneOf(elementType);
        Iterables.addAll(set, iterable);
        return set;
      }
    
      // HashSet
    
      /**
       * Creates a <i>mutable</i>, initially empty {@code HashSet} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableSet#of()} instead. If {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					Type: "integer",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "self > 0",
    							Message: "scoped field should be greater than 0",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    			name: "valid for number",
    			input: schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return BroadcastCompatible(l, r);
        }
      }];
    }
    
    def TF_EmptyTensorListOp : TF_TensorListInitOp<"EmptyTensorList"> {
      let summary = "Creates and returns an empty tensor list.";
    
      let description = [{
    All list elements must be tensors of dtype element_dtype and shape compatible
    with element_shape.
    
    handle: an empty tensor list.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top