Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,060 for associateBy (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    // MatchesScopeFunc knows how to evaluate if an object matches a scope
    type MatchesScopeFunc func(scope corev1.ScopedResourceSelectorRequirement, object runtime.Object) (bool, error)
    
    // UsageFunc knows how to measure usage associated with an object
    type UsageFunc func(object runtime.Object) (corev1.ResourceList, error)
    
    // MatchingResourceNamesFunc is a function that returns the list of resources matched
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/restored_resource.h

      //           create_resource function to produce the resource_handle
      //           associated with the object:
      //           https://github.com/tensorflow/tensorflow/blob/568e2bef00f24af1159a0846abf67c099ca78a21/tensorflow/python/training/tracking/tracking.py#L246-L247
      //  create_resource - Non owning pointer to the create_resource function
      //                    associated with this object. Must be NON-NULL.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  3. src/runtime/netpoll_solaris.go

    // also re-associate the events that were not part of this current
    // notification with the file descriptor. Failing to do this would
    // mean each notification will prevent concurrent code using the
    // same file descriptor in parallel.
    //
    // The logic dealing with re-associations is encapsulated in
    // runtime·netpollupdate. This function takes care to associate the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                                    xcTestDescriptor.getMessages().add(message);
                                }
                            }
    
                            // If no current test can be associated to the output, the last known descriptor is used.
                            // See https://bugs.swift.org/browse/SR-1127 for more information.
                        } else if (lastDescriptor != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/HasGradleProject.java

     */
    
    package org.gradle.tooling.model;
    
    /**
     * An element that is associated with a Gradle project. Via the Gradle project you can access (list, run, etc.) Gradle tasks.
     */
    public interface HasGradleProject extends ProjectModel {
    
        /**
         * Returns the identifier for the project that this model is associated with.
         * @since 3.3
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

     */
    public interface ProblemDiagnostics {
    
        /**
         * A stack tracing failure associated with the problem.
         * <p>
         * Usually, if the problem was caused by an exception, the failure would correspond to that exception.
         * However, problems that are registered explicitly (e.g. deprecation warnings) will not have an associated exception.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/internal/trace/summary.go

    	Start *Event
    
    	// End end event. Normally EventTaskEnd event or nil.
    	End *Event
    
    	// Logs is a list of EventLog events associated with the task.
    	Logs []*Event
    
    	// List of regions in the task, sorted based on the start time.
    	Regions []*UserRegionSummary
    
    	// Goroutines is the set of goroutines associated with this task.
    	Goroutines map[GoID]*GoroutineSummary
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_cache.h

      // found, `request_count` is incremented before returning the value.
      Value LookupOrCreate(const Key& key);
    
      // Caches `compile_state`, `compilation_status`, `compilation_result` and
      // `executable` and associates them with the provided `key`. Takes ownership
      // of `compilation_result` and `executable`. Does not increment the
      // corresponding `request_count`. Only arguments that are not std::nullopt are
      // updated in the cache.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. architecture/ambient/ztunnel.md

      * In practice, this largely means that references are fully qualified in the API. IP Addresses (generally) have a network associated with them, node names have a cluster associated with them, etc.
    
    See the [XDS Evolution](https://docs.google.com/document/d/1V5wkeBHbLSLMzAMbwFlFZNHdZPyUEspG4lHbnB0UaCg/edit) document for more history and details.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LoadingCache.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface LoadingCache<K, V> extends Cache<K, V>, Function<K, V> {
    
      /**
       * Returns the value associated with {@code key} in this cache, first loading that value if
       * necessary. No observable state associated with this cache is modified until loading completes.
       *
       * <p>If another call to {@link #get} or {@link #getUnchecked} is currently loading the value for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top