Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for welcome (0.18 sec)

  1. tensorflow/c/c_api.h

    //              the nodes in the graph (except for the automatic skipping, see
    //              below).
    //  opers - Array of operations to become the body of the function or null.
    //          - If no array is given (`num_opers` = -1), all the
    //          operations in `fn_body` will become part of the function
    //          except operations referenced in `inputs`. These operations
    C
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. cmd/admin-handlers-users.go

    //
    // Newer API response with policy timestamps is returned with query parameter
    // `v=2` like:
    //
    // GET /minio/admin/v3/info-canned-policy?name={policyName}&v=2
    //
    // The newer API will eventually become the default (and only) one. The older
    // response is to return only the policy JSON. The newer response returns
    // timestamps along with the policy JSON. Both versions are supported for now,
    // for smooth transition to new API.
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sat Apr 06 03:13:35 GMT 2024
    - 75.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    }
    
    // The URI schemes that need to be tested are provided by the user via flags
    // (or, if none is supplied, all existing schemes are used). As a scheme can
    // become available after a shared object with a filesystem implementation is
    // loaded, we can only check for availability after all arguments have been
    // parsed.
    //
    C++
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  4. .bazelrc

    # Don't trigger --config=<host platform> when cross-compiling.
    build:android --noenable_platform_specific_config
    build:ios --noenable_platform_specific_config
    
    # Suppress all C++ compiler warnings, otherwise build logs become 10s of MBs.
    build:android --copt=-w
    build:ios --copt=-w
    build:linux --host_copt=-w
    build:macos --copt=-w
    build:windows --copt=/W0
    build:windows --host_copt=/W0
    
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Fri Mar 29 01:37:22 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  5. cmd/xl-storage-format-v2.go

    		}
    	}
    	return &dst, err
    }
    
    // setIdx will replace a version at a given index.
    // Note that versions may become re-sorted if modtime changes.
    func (x *xlMetaV2) setIdx(idx int, ver xlMetaV2Version) (err error) {
    	if idx < 0 || idx >= len(x.versions) {
    		return errFileNotFound
    	}
    	update := &x.versions[idx]
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 63.2K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.3.md

        * In order to remain backwards compatible, the new controller only manages attach/detach of volumes that are scheduled to nodes that opt-in to controller management. Nodes running v1.3 or higher of Kubernetes opt-in to controller...
    Plain Text
    - Registered: Fri Apr 12 09:05:11 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    // from the original Go source files to the names
    // used in the final Go files generated by cgo.
    func (p *Package) mangleName(n *Name) {
    	// When using gccgo variables have to be
    	// exported so that they become global symbols
    	// that the C code can refer to.
    	prefix := "_C"
    	if *gccgo && n.IsVar() {
    		prefix = "C"
    	}
    	n.Mangle = prefix + n.Kind + "_" + n.Go
    }
    
    func (f *File) isMangledName(s string) bool {
    Go
    - Registered: Tue Apr 09 11:13:10 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top