Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 357 for session_ (0.2 sec)

  1. tensorflow/c/c_test_util.cc

      return names;
    }
    
    CSession::CSession(TF_Graph* graph, TF_Status* s, bool use_XLA) {
      TF_SessionOptions* opts = TF_NewSessionOptions();
      TF_EnableXLACompilation(opts, use_XLA);
      session_ = TF_NewSession(graph, opts, s);
      TF_DeleteSessionOptions(opts);
    }
    
    CSession::CSession(TF_Session* session) : session_(session) {}
    
    CSession::~CSession() {
      TF_Status* s = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Creates a derived session using the given local repository.
         *
         * @param localRepository the new local repository
         * @return the derived session
         * @throws NullPointerException if {@code localRepository} is null
         */
        @Nonnull
        Session withLocalRepository(@Nonnull LocalRepository localRepository);
    
        /**
         * Creates a derived session using the given remote repositories.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsUrlQueueService.java

            }
        }
    
        @Override
        public void delete(final String sessionId) {
            deleteBySessionId(sessionId);
        }
    
        @Override
        public void offerAll(final String sessionId, final List<EsUrlQueue> urlQueueList) {
            if (logger.isDebugEnabled()) {
                logger.debug("Offering URL: Session ID: {}, UrlQueue: {}", sessionId, urlQueueList);
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                    .build()) {
                MavenSession mSession = new MavenSession(repoSession, request, new DefaultMavenExecutionResult());
                InternalSession iSession = new SimpleSession(mSession, repoSystem, null);
                InternalSession.associate(repoSession, iSession);
    
                List<RemoteRepository> repositories = RepositoryUtils.toRepos(request.getPluginArtifactRepositories());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/loader.cc

      session->reset(session_p);
      TF_RETURN_IF_ERROR(ValidateSavedTensors(meta_graph.graph_def()));
      return (*session)->Create(meta_graph.graph_def());
    }
    
    Status LoadGraphDefIntoSession(const SessionOptions& session_options,
                                   GraphDef graph_def,
                                   std::unique_ptr<Session>* session) {
      Session* session_p = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/crypto/tls/ticket.go

    // resume a previous TLS session.
    type ClientSessionState struct {
    	session *SessionState
    }
    
    // ResumptionState returns the session ticket sent by the server (also known as
    // the session's identity) and the state necessary to resume this session.
    //
    // It can be called by [ClientSessionCache.Put] to serialize (with
    // [SessionState.Bytes]) and store the session.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client.go

    	return nil
    }
    
    func (hs *clientHandshakeState) serverResumedSession() bool {
    	// If the server responded with the same sessionId then it means the
    	// sessionTicket is being used to resume a TLS session.
    	return hs.session != nil && hs.hello.sessionId != nil &&
    		bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
    }
    
    func (hs *clientHandshakeState) processServerHello() (bool, error) {
    	c := hs.c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            DefaultRepositorySystemSession rsession = new DefaultRepositorySystemSession(h -> false);
            rsession.setSystemProperties(properties);
            rsession.setConfigProperties(properties);
    
            DefaultSession session = new DefaultSession(
                    rsession,
                    system,
                    List.of(lookup.lookup(RepositoryFactory.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                        return model;
                    }
                }
    
                try {
                    InternalSession iSession = InternalSession.from(session);
                    Session iSessionWithRepos = iSession.withRemoteRepositories(request.getRepositories().stream()
                            .map(iSession::getRemoteRepository)
                            .toList());
                    String gav =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                project.setPluginArtifactRepositories(request.getPluginArtifactRepositories());
                projects.add(project);
            }
    
            session.setProjects(projects);
            session.setAllProjects(session.getProjects());
    
            return session;
        }
    
        protected void initRepoSession(ProjectBuildingRequest request) throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top