Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Leeds (0.15 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// DEFAULT IMPLEMENTATION: Gets statistics about `path`. Needs `stat`.
      int64_t (*get_file_size)(const TF_Filesystem* filesystem, const char* path,
                               TF_Status* status);
    
      /// Translates `uri` to a filename for the filesystem
      ///
      /// A filesystem is registered for a specific scheme and all of the methods
      /// should work with URIs. Hence, each filesystem needs to be able to
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    		// class for objects which have reduced quorum
    		// storage class only needs to be honored for
    		// Read() requests alone which we already do.
    		writeQuorums[i] = len(storageDisks)/2 + 1
    	}
    
    	versionsMap := make(map[string]FileInfoVersions, len(objects))
    	for i := range objects {
    		// Construct the FileInfo data that needs to be preserved on the disk.
    		vr := FileInfo{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 76.9K bytes
    - Viewed (2)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                    request = new SmbComSessionSetupAndX(this.getContext(), negoResp, andx, getCredentials());
                    // if the connection already has a digest set up this needs to be used
                    request.setDigest(getDigest());
                    response = new SmbComSessionSetupAndXResponse(getContext().getConfig(), andxResponse);
                    response.setExtendedSecurity(false);
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_test.cc

      TF_Session* sess = TF_NewSession(graph, opts, s);
      TF_DeleteSessionOptions(opts);
    
      TF_Output feeds[] = {TF_Output{a, 0}, TF_Output{b, 0}};
      TF_Output fetches[] = {TF_Output{plus2, 0}, TF_Output{plusB, 0}};
    
      const char* handle = nullptr;
      TF_SessionPRunSetup(sess, feeds, TF_ARRAYSIZE(feeds), fetches,
                          TF_ARRAYSIZE(fetches), nullptr, 0, &handle, s);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * ```
     *
     * ## Shutdown Isn't Necessary
     *
     * The threads and connections that are held will be released automatically if they remain idle. But
     * if you are writing a application that needs to aggressively release unused resources you may do
     * so.
     *
     * Shutdown the dispatcher's executor service with [shutdown()][ExecutorService.shutdown]. This will
     * also cause future calls to the client to be rejected.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 06 04:21:33 GMT 2024
    - 52K bytes
    - Viewed (0)
  6. .bazelrc

    build --config=v2
    
    # Disable AWS/HDFS support by default
    build --define=no_aws_support=true
    build --define=no_hdfs_support=true
    
    # TF now has `cc_shared_library` targets, so it needs the experimental flag
    # TODO(rostam): Remove when `cc_shared_library` is enabled by default
    build --experimental_cc_shared_library
    
    # cc_shared_library ensures no library is linked statically more than once.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  7. cmd/xl-storage-format-v2.go

    	return fi, err
    }
    
    // ListVersions lists current versions, and current deleted
    // versions returns error for unexpected entries.
    // showPendingDeletes is set to true if ListVersions needs to list objects marked deleted
    // but waiting to be replicated
    func (x xlMetaV2) ListVersions(volume, path string, allParts bool) ([]FileInfo, error) {
    	versions := make([]FileInfo, 0, len(x.versions))
    	var err error
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    delegatedTypeRef?.source?.kind == KtFakeSourceElementKind.ArrayTypeFromVarargParameter -> null
    
                    // but the array's underlying type is present with a fake source, and needs to be handled
                    source?.kind == KtFakeSourceElementKind.ArrayTypeFromVarargParameter -> psi
    
                    else -> realPsi
                }
    
                val outerTypeElement = when (sourcePsi) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    "<plugin-in-inactive-only>Inactive only ||${project.basedir}||</plugin-in-inactive-only>");
        }
    
        // Some better conventions for the test poms needs to be created and each of these tests
        // that represent a verification of a specification item needs to be a couple lines at most.
        // The expressions help a lot, but we need a clean to pick up a directory of POMs, automatically load
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // (generally five to fifteen minutes) or a configuration change on the server, the server will
      // respond with a 410 ResourceExpired error together with a continue token. If the client needs a
      // consistent list, it must restart their list without the continue field. Otherwise, the client may
      // send another list request with the token received with the 410 error, the server will respond with
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
Back to top