Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 490 for Terminate (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher_test.go

    )
    
    func TestCacherListerWatcher(t *testing.T) {
    	prefix := "pods"
    	fn := func() runtime.Object { return &example.PodList{} }
    	server, store := newEtcdTestStorage(t, prefix)
    	defer server.Terminate(t)
    
    	objects := []*example.Pod{
    		{ObjectMeta: metav1.ObjectMeta{Name: "bar", Namespace: "test-ns"}},
    		{ObjectMeta: metav1.ObjectMeta{Name: "baz", Namespace: "test-ns"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. mockwebserver/src/main/kotlin/mockwebserver3/Stream.kt

    /**
     * A bidirectional sequence of data frames exchanged between client and server.
     */
    @ExperimentalOkHttpApi
    interface Stream {
      val requestBody: BufferedSource
      val responseBody: BufferedSink
    
      /**
       * Terminate the stream so that no further data is transmitted or received. Note that
       * [requestBody] may return data after this call; that is the buffered data received before this
       * stream was canceled.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/PATENTS

    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/build/PATENTS

    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/PATENTS

    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pkg/controlplane/instance_test.go

    func TestLegacyRestStorageStrategies(t *testing.T) {
    	_, etcdserver, apiserverCfg, _ := newInstance(t)
    	defer etcdserver.Terminate(t)
    
    	storageProvider, err := corerest.New(corerest.Config{
    		GenericConfig: *apiserverCfg.ControlPlane.NewCoreGenericConfig(),
    		Proxy: corerest.ProxyConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.StorageVersionAPI, true)
    
    	server, sc := etcd3testing.NewUnsecuredEtcd3TestClientServer(t)
    	t.Cleanup(func() { server.Terminate(t) })
    
    	newFunc := func() runtime.Object { return &corev1.Endpoints{} }
    	newListFunc := func() runtime.Object { return &corev1.EndpointsList{} }
    	sc.Codec = apitesting.TestStorageCodec(codecs, corev1.SchemeGroupVersion)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

                        return TypeVisitResult.TERMINATE;
                    }
                }
                Type genericSuperclass = type.getGenericSuperclass();
                if (collectTypeParameters(genericSuperclass, foundType, collectedTypes, typeArgumentIndex)) {
                    return TypeVisitResult.TERMINATE;
                }
                return TypeVisitResult.CONTINUE;
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/model.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	gatewayAliasForAnnotationKey = "gateway.istio.io/alias-for"
    	gatewayTLSTerminateModeKey   = "gateway.istio.io/tls-terminate-mode"
    	gatewayNameOverride          = "gateway.istio.io/name-override"
    	gatewaySAOverride            = "gateway.istio.io/service-account"
    	serviceTypeOverride          = "networking.istio.io/service-type"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * @param service the {@code ExecutorService} to shut down
       * @param timeout the maximum time to wait for the {@code ExecutorService} to terminate
       * @return {@code true} if the {@code ExecutorService} was terminated successfully, {@code false}
       *     if the call timed out or was interrupted
       * @since 28.0
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
Back to top