Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,060 for associateBy (1.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

    // all TPU_SYSTEM:0 devices and choosing the CPU device associated to the first
    // TPU_SYSTEM device sorted lexicographically by replica and task. Execution
    // devices are determined by looking up all TPU devices associated with each
    // TPU_SYSTEM:0 device found, alongside associated `topology_attr` and
    // `device_assignment_attr`. If `topology_attr` not an empty string (parsable to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    // range of data conveyed in value to the file associated with the file
    // descriptor destFd. See the ioctl_ficlonerange(2) man page for details.
    func IoctlFileCloneRange(destFd int, value *FileCloneRange) error {
    	return ioctlPtr(destFd, FICLONERANGE, unsafe.Pointer(value))
    }
    
    // IoctlFileClone performs an FICLONE ioctl operation to clone the entire file
    // associated with the file description srcFd to the file associated with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    	PrevSidecarScope *SidecarScope
    
    	// The merged gateways associated with the proxy if this is a Router
    	MergedGateway *MergedGateway
    
    	// PrevMergedGateway contains information about merged gateway associated with the proxy previously
    	PrevMergedGateway *PrevMergedGateway
    
    	// ServiceTargets contains a list of all Services associated with the proxy, contextualized for this particular proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

        /**
         * Returns the locations associated with this problem.
         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
         * Returns the list of solutions.
         *
         * @return the solutions
         * @since 8.8
         */
        List<Solution> getSolutions();
    
        /**
         * Returns the failure associated with this problem.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/JvmTestToolchain.java

        /**
         * Returns the dependencies required to compile the test sources associated with this toolchain.
         */
        default Iterable<Dependency> getCompileOnlyDependencies() {
            return Collections.emptyList();
        };
    
        /**
         * Returns the dependencies required only when executing the tests associated with this toolchain.
         */
        default Iterable<Dependency> getRuntimeOnlyDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/go/doc/testdata/b.1.golden

    	// 
    	func F1() notExported
    
    	// 
    	func f2() notExported
    
    	// Should only appear if AllDecls is set. 
    	type uint struct{}	// overrides a predeclared type uint
    
    	// Associated with uint type if AllDecls is set. 
    	func UintFactory() uint
    
    	// Associated with uint type if AllDecls is set. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    The Pass type has functions to import and export facts,
    associated either with an object or with a package:
    
    	type Pass struct {
    		...
    		ExportObjectFact func(types.Object, Fact)
    		ImportObjectFact func(types.Object, Fact) bool
    
    		ExportPackageFact func(fact Fact)
    		ImportPackageFact func(*types.Package, Fact) bool
    	}
    
    An Analyzer may only export facts associated with the current package or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/waypoint.go

    )
    
    const (
    	// ConnectTerminate is the name for the resources associated with the termination of HTTP CONNECT.
    	ConnectTerminate = "connect_terminate"
    
    	// MainInternalName is the name for the resources associated with the main (non-tunnel) internal listener.
    	MainInternalName = "main_internal"
    
    	// ConnectOriginate is the name for the resources associated with the origination of HTTP CONNECT.
    	ConnectOriginate = "connect_originate"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    		delete(e.cookies, fCookie)
    	}
    	delete(e.paths, path)
    	return err
    }
    
    // AssociateFd wraps calls to port_associate(3c) on file descriptors.
    func (e *EventPort) AssociateFd(fd uintptr, events int, cookie interface{}) error {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	if _, found := e.fds[fd]; found {
    		return fmt.Errorf("%v is already associated with this Event Port", fd)
    	}
    	fCookie, err := createFileObjCookie("", nil, cookie)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top