Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 471 for Initial (0.43 sec)

  1. guava/src/com/google/common/collect/MapMaker.java

       *
       * @throws IllegalArgumentException if {@code initialCapacity} is negative
       * @throws IllegalStateException if an initial capacity was already set
       */
      @CanIgnoreReturnValue
      public MapMaker initialCapacity(int initialCapacity) {
        checkState(
            this.initialCapacity == UNSET_INT,
            "initial capacity was already set to %s",
            this.initialCapacity);
        checkArgument(initialCapacity >= 0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/informers.go

    // (as per control plane annotation)
    // Note that this is not the same thing as SHOULD be enabled or WILL be enabled.
    // This is only used for building the initial snapshot ATM.
    func (s *InformerHandlers) GetActiveAmbientPodSnapshot() []*corev1.Pod {
    	var pods []*corev1.Pod
    	for _, pod := range s.pods.List(metav1.NamespaceAll, klabels.Everything()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    			updatedPod:      withPVC(defaultPVCName, pod()),
    			expectedActions: []clienttesting.Action{},
    		},
    	}
    
    	for _, test := range tests {
    		// Create initial data for client and informers.
    		var (
    			clientObjs    []runtime.Object
    			informersObjs []runtime.Object
    		)
    		if test.updatedPVC != nil {
    			clientObjs = append(clientObjs, test.updatedPVC)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository.java

            private final static String MAX_TENTATIVES_BEFORE_DISABLING = "org.gradle.internal.repository.max.tentatives";
            private final static String INITIAL_BACKOFF_MS = "org.gradle.internal.repository.initial.backoff";
    
            private final ModuleComponentRepositoryAccess<ModuleComponentGraphResolveState> delegate;
            private final String repositoryId;
            private final RepositoryDisabler repositoryDisabler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    					t.Fatalf("did not get expected unhealthy endpoints: got %v, want %v", gotUnhealthy, unhealthy)
    				}
    			}
    
    			// Validate that we do send initial unhealthy endpoints.
    			// ExpectPush=false since we are just querying the initial state, we already got the responses in our initial connection
    			if sendUnhealthy {
    				validateEndpoints(false, nil, []string{"10.0.0.53:53"})
    			} else {
    				validateEndpoints(false, nil, nil)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. src/crypto/tls/quic.go

    	// QUICSetReadSecret and QUICSetWriteSecret provide the read and write
    	// secrets for a given encryption level.
    	// QUICEvent.Level, QUICEvent.Data, and QUICEvent.Suite are set.
    	//
    	// Secrets for the Initial encryption level are derived from the initial
    	// destination connection ID, and are not provided by the QUICConn.
    	QUICSetReadSecret
    	QUICSetWriteSecret
    
    	// QUICWriteData provides data to send to the peer in CRYPTO frames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. pkg/proxy/config/config.go

    	OnServiceUpdate(oldService, service *v1.Service)
    	// OnServiceDelete is called whenever deletion of an existing service
    	// object is observed.
    	OnServiceDelete(service *v1.Service)
    	// OnServiceSynced is called once all the initial event handlers were
    	// called and the state is fully propagated to local cache.
    	OnServiceSynced()
    }
    
    // EndpointSliceHandler is an abstract interface of objects which receive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
    CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
    
       1. DEFINITIONS
    
       "Contribution" means:
    
    a) in the case of the initial Contributor, the initial code and documentation
    distributed under this Agreement, and
    
          b) in the case of each subsequent Contributor:
    
             i) changes to the Program, and
    
             ii) additions to the Program;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

    @ElementTypesAreNonnullByDefault
    public final class MinMaxPriorityQueue<E> extends AbstractQueue<E> {
    
      /**
       * Creates a new min-max priority queue with default settings: natural order, no maximum size, no
       * initial contents, and an initial expected size of 11.
       */
      public static <E extends Comparable<E>> MinMaxPriorityQueue<E> create() {
        return new Builder<Comparable<E>>(Ordering.natural()).create();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	fs.DurationVar(&o.InitialBackoff, "audit-webhook-initial-backoff",
    		o.InitialBackoff, "The amount of time to wait before retrying the first failed request.")
    	fs.DurationVar(&o.InitialBackoff, "audit-webhook-batch-initial-backoff",
    		o.InitialBackoff, "The amount of time to wait before retrying the first failed request.")
    	fs.MarkDeprecated("audit-webhook-batch-initial-backoff",
    		"Deprecated, use --audit-webhook-initial-backoff instead.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top