Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for delegates (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/BUILD

            "//tensorflow/lite:graph_info",
            "//tensorflow/lite:schema_fbs_version",
            "//tensorflow/lite/core:framework",
            "//tensorflow/lite/core/c:private_common",
            "//tensorflow/lite/delegates/flex:allowlisted_flex_ops_lib",
            "//tensorflow/lite/experimental/remat:metadata_util",
            "//tensorflow/lite/python/metrics:converter_error_data_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    		}
    	}
    
    	return res
    }
    
    // DelegateVirtualServices lists all the delegate virtual services configkeys associated with the provided virtual services
    func (ps *PushContext) DelegateVirtualServices(vses []config.Config) []ConfigHash {
    	var out []ConfigHash
    	for _, vs := range vses {
    		for _, delegate := range ps.virtualServiceIndex.delegates[ConfigKey{Kind: kind.VirtualService, Namespace: vs.Namespace, Name: vs.Name}] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * property or method which your script uses is delegated through to the associated <code>Project</code> object.  This
     * means, that you can use any of the methods and properties on the <code>Project</code> interface directly in your script.
     * </p><p>For example:
     * <pre>
     * defaultTasks('some-task')  // Delegates to Project.defaultTasks()
     * reportsDir = file('reports') // Delegates to Project.file() and the Java Plugin
     * </pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            } else {
                // The isEmpty check is not required, might look innocent, but Guava's performance bad for an empty immutable list
                // because it still creates an inner class for an iterator, which delegates to an Array iterator, which does... nothing.
                // so just adding this check has a significant impact because most components do not declare any capability
                if (!capabilities.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. tensorflow/BUILD

            "//tensorflow/dtensor/cc:dtensor_device_cc",
            "//tensorflow/dtensor/cc:tensor_layout",
            "//tensorflow/lite/c:common",
            "//tensorflow/lite/core/api",
            "//tensorflow/lite/delegates/flex:delegate",
            "//tensorflow/lite/kernels/internal:compatibility",
            "//tensorflow/lite/kernels:builtin_ops",
            "//tensorflow/lite/kernels:reference_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. android/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: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. 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)
Back to top