Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for delegatee (0.28 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            IllegalStateException t = thrown()
            t.message == "Cannot change attributes of configuration ':conf' after it has been locked for mutation"
        }
    
        def "wrapper attribute container behaves similar to the delegatee"() {
            given:
            def conf = conf()
            def a1 = Attribute.of('a1', String)
            def a2 = Attribute.of('a2', String)
            def containerMutable = conf.getAttributes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

      private static final class NonCancellationPropagatingFuture<V extends @Nullable Object>
          extends AbstractFuture.TrustedFuture<V> implements Runnable {
        @CheckForNull @LazyInit private ListenableFuture<V> delegate;
    
        NonCancellationPropagatingFuture(final ListenableFuture<V> delegate) {
          this.delegate = delegate;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

      private static final class NonCancellationPropagatingFuture<V extends @Nullable Object>
          extends AbstractFuture.TrustedFuture<V> implements Runnable {
        @CheckForNull @LazyInit private ListenableFuture<V> delegate;
    
        NonCancellationPropagatingFuture(final ListenableFuture<V> delegate) {
          this.delegate = delegate;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

                    viewClass.getClassLoader().loadClass(delegateSchema.getType().getConcreteClass().getName());
                } catch (ClassNotFoundException e) {
                    // Delegate class is not visible to managed view type -> view type is more general than delegate type, so use the delegate classloader instead
                    targetClassLoader = delegateSchema.getType().getConcreteClass().getClassLoader();
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  8. 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)
  9. guava/src/com/google/common/collect/Multimaps.java

        UnmodifiableListMultimap(ListMultimap<K, V> delegate) {
          super(delegate);
        }
    
        @Override
        public ListMultimap<K, V> delegate() {
          return (ListMultimap<K, V>) super.delegate();
        }
    
        @Override
        public List<V> get(@ParametricNullness K key) {
          return Collections.unmodifiableList(delegate().get(key));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

        UnmodifiableListMultimap(ListMultimap<K, V> delegate) {
          super(delegate);
        }
    
        @Override
        public ListMultimap<K, V> delegate() {
          return (ListMultimap<K, V>) super.delegate();
        }
    
        @Override
        public List<V> get(@ParametricNullness K key) {
          return Collections.unmodifiableList(delegate().get(key));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top