Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for get_session (0.05 seconds)

  1. tensorflow/c/c_api.cc

      Session* session;
      status->status = NewSession(opt->options, &session);
      if (status->status.ok()) {
        TF_Session* new_session = new TF_Session(session, graph);
        if (graph != nullptr) {
          mutex_lock l(graph->mu);
          graph->sessions[new_session] = "";
        }
        return new_session;
      } else {
        LOG(ERROR) << status->status;
        DCHECK_EQ(nullptr, session);
        return nullptr;
      }
    }
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                    req.setShareAccess(sharing);
                    req.setFileAttributes(attrs);
    
                    // Add SMB3 features support with error handling for compatibility
                    SmbSessionImpl session = h.getSession();
    
                    // Enable lease support if available, with fallback for compatibility
                    boolean leasesAdded = false;
                    if (config.isUseLeases() && h.isSMB3()) {
                        try {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 103.2K bytes
    - Click Count (0)
Back to Top