Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 172 for createId (0.18 sec)

  1. pkg/proxy/winkernel/proxier.go

    	if !ep.IsLocal() && ep.refCount != nil {
    		*ep.refCount--
    
    		// Remove the remote hns endpoint, if no service is referring it
    		// Never delete a Local Endpoint. Local Endpoints are already created by other entities.
    		// Remove only remote endpoints created by this service
    		if *ep.refCount <= 0 && !ep.IsLocal() {
    			klog.V(4).InfoS("Removing endpoints, since no one is referencing it", "endpoint", ep)
    			err := ep.hns.deleteEndpoint(ep.hnsID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>notification of evicted (or otherwise removed) entries
     *   <li>accumulation of cache access statistics
     * </ul>
     *
     * <p>These features are all optional; caches can be created using all or none of them. By default,
     * cache instances created by {@code CacheBuilder} will not perform any type of eviction.
     *
     * <p>Usage example:
     *
     * <pre>{@code
     * LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    					Message: "Policy2Denied",
    				},
    			},
    		}
    	})
    
    	require.NoError(t, testContext.UpdateAndWait(fakeParams, &policy1, &binding1))
    
    	// Make sure policy 1 is created and bound to the params type first
    	require.NoError(t, testContext.UpdateAndWait(&policy2, &binding2))
    
    	err := testContext.Plugin.Dispatch(
    		testContext,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    ====
    [.multi-language-sample]
    =====
    .build.gradle
    [source, groovy]
    ----
    tasks.create("foo") {
        tasks.create("bar")
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    tasks.create("foo") {
        tasks.create("bar")
    }
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		{Event: framework.ClusterEvent{Resource: framework.Node, ActionType: framework.Add | framework.UpdateNodeLabel | framework.UpdateNodeTaint}},
    		// A pod might be waiting for a class to get created or modified.
    		{Event: framework.ClusterEvent{Resource: framework.ResourceClass, ActionType: framework.Add | framework.Update}},
    	}
    	return events
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			}
    			defer watcher.Stop()
    
    			// Create events of pods in a different namespace
    			out := &example.Pod{}
    			obj := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: fmt.Sprintf("other-ns-%d", i)}}
    			objKey := computePodKey(obj)
    
    			if err := store.Create(ctx, objKey, obj, out, 0); err != nil {
    				t.Fatalf("Create failed: %v", err)
    			}
    
    			// Now wait for Bookmark event
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MapsTest.java

      @GwtIncompatible // reflection
      @AndroidIncompatible // relies on assumptions about OpenJDK
      public void testNewHashMapWithExpectedSize_wontGrow() throws Exception {
        // before jdk7u40: creates one-bucket table
        // after  jdk7u40: creates empty table
        assertTrue(bucketsOf(Maps.newHashMapWithExpectedSize(0)) <= 1);
    
        for (int size = 1; size < 200; size++) {
          assertWontGrow(
              size,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    )
    
    // ticketKey is the internal representation of a session ticket key.
    type ticketKey struct {
    	aesKey  [16]byte
    	hmacKey [16]byte
    	// created is the time at which this ticket key was created. See Config.ticketKeys.
    	created time.Time
    }
    
    // ticketKeyFromBytes converts from the external representation of a session
    // ticket key to a ticketKey. Externally, session ticket keys are 32 random
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            given:
            buildFile << """
                configurations.create("legacy") {
                    description = "My custom legacy configuration"
                    assert canBeResolved
                    assert canBeConsumed
                }
            """
    
            when:
            executer.expectDeprecationWarning('(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * OkHttp performs best when you create a single `OkHttpClient` instance and reuse it for all of
     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
     * Reusing connections and threads reduces latency and saves memory. Conversely, creating a client
     * for each request wastes resources on idle pools.
     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top