Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for delegates (0.14 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * cannot be overridden by a call to a {@code set*} method, only by a call to {@link #cancel}.
       *
       * <p>If the call {@code setFuture(delegate)} is accepted and this {@code Future} is later
       * cancelled, cancellation will be propagated to {@code delegate}. Additionally, any call to
       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. guava/src/com/google/common/collect/Sets.java

        private final NavigableSet<E> delegate;
        private final SortedSet<E> unmodifiableDelegate;
    
        UnmodifiableNavigableSet(NavigableSet<E> delegate) {
          this.delegate = checkNotNull(delegate);
          this.unmodifiableDelegate = Collections.unmodifiableSortedSet(delegate);
        }
    
        @Override
        protected SortedSet<E> delegate() {
          return unmodifiableDelegate;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        shared a single HTTP engine between two frontend APIs: `HttpURLConnection`
        and `Call`. With this release we’ve rearranged things so that the
        `HttpURLConnection` frontend now delegates to the `Call` APIs internally.
        This has enabled substantial simplifications and optimizations in the OkHttp
        core for both frontends.
    
        For most HTTP requests the consequences of this change will be negligible.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    				},
    			},
    		},
    		{
    			name: "delegate with mirrors",
    			root: &networking.HTTPRoute{
    				Match:   nil,
    				Mirrors: []*networking.HTTPMirrorPolicy{{Destination: dstMirrorV3}},
    				Delegate: &networking.Delegate{
    					Name:      "delegate",
    					Namespace: "default",
    				},
    			},
    			delegate: []*networking.HTTPRoute{
    				{
    					Match: []*networking.HTTPMatchRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:ide]]
    == IDE support
    
    If you enable and configure the configuration cache from your `gradle.properties` file, then the configuration cache will be enabled when your IDE delegates to Gradle.
    There's nothing more to do.
    
    `gradle.properties` is usually checked in to source control.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    							},
    						},
    					},
    					Delegate: &networking.Delegate{
    						Name:      "delegate",
    						Namespace: "ns2",
    					},
    				},
    			},
    		},
    	}
    	delegate := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "delegate",
    			Namespace:        "ns2",
    		},
    		Spec: &networking.VirtualService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Synchronized.java

      static class SynchronizedObject implements Serializable {
        final Object delegate;
        final Object mutex;
    
        SynchronizedObject(Object delegate, @CheckForNull Object mutex) {
          this.delegate = checkNotNull(delegate);
          this.mutex = (mutex == null) ? this : mutex;
        }
    
        Object delegate() {
          return delegate;
        }
    
        // No equals and hashCode; see ForwardingObject for details.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Synchronized.java

      static class SynchronizedObject implements Serializable {
        final Object delegate;
        final Object mutex;
    
        SynchronizedObject(Object delegate, @CheckForNull Object mutex) {
          this.delegate = checkNotNull(delegate);
          this.mutex = (mutex == null) ? this : mutex;
        }
    
        Object delegate() {
          return delegate;
        }
    
        // No equals and hashCode; see ForwardingObject for details.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        private class ResultCollectingHandle implements GradleHandle {
            private final GradleHandle delegate;
    
            public ResultCollectingHandle(GradleHandle delegate) {
                this.delegate = delegate;
            }
    
            @Override
            public PipedOutputStream getStdinPipe() {
                return delegate.getStdinPipe();
            }
    
            @Override
            public String getStandardOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                    '2.2' {
                        withModule {
                            supplierInteractions.expectGetStatus(delegate, 'integration')
                        }
                    }
                    '1.1' {
                        withModule {
                            supplierInteractions.expectGetStatus(delegate, 'release')
    
                        }
                        expectResolve()
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top