Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,158 for session_ (0.3 sec)

  1. tensorflow/c/c_api_internal.h

      // The keys of this map are all the active sessions using this graph. Each
      // value records whether the graph has been mutated since the corresponding
      // session has been run (this is detected in RecordMutation function). If the
      // string is empty, no mutation has occurred. Otherwise the string is a
      // description of the mutation suitable for returning to the user.
      //
      // Sessions are added to this map in TF_NewSession, and removed in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 00:49:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. 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)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/InternalSession.java

            return cast(InternalSession.class, session.getData().get(InternalSession.class), "session");
        }
    
        static void associate(org.eclipse.aether.RepositorySystemSession rsession, Session session) {
            if (!rsession.getData().set(InternalSession.class, null, from(session))) {
                throw new IllegalStateException("A maven session is already associated with the repository session");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:55:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/sessions/KaBaseSessionProvider.kt

        }
    
        override fun afterLeavingAnalysis(session: KtAnalysisSession, useSiteModule: KtModule) {
            afterLeavingAnalysis(session)
        }
    
        private fun afterLeavingAnalysis(session: KtAnalysisSession) {
            writeActionStartedChecker.afterLeavingAnalysis()
            lifetimeTracker.afterLeavingAnalysis(session)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/session/FirIdeNormalAnalysisSourceModuleCodeFragmentContextModificationAnalysisSessionInvalidationTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/sessions/sessionInvalidation"), Pattern.compile("^(.+)\\.kt$"), null, true);
      }
    
      @Test
      @TestMetadata("binaryTreeAdditionalEdge.kt")
      public void testBinaryTreeAdditionalEdge() {
        runTest("analysis/analysis-api/testData/sessions/sessionInvalidation/binaryTreeAdditionalEdge.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 10:43:08 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/session/FirIdeNormalAnalysisSourceModuleGlobalSourceModuleStateModificationAnalysisSessionInvalidationTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/sessions/sessionInvalidation"), Pattern.compile("^(.+)\\.kt$"), null, true);
      }
    
      @Test
      @TestMetadata("binaryTreeAdditionalEdge.kt")
      public void testBinaryTreeAdditionalEdge() {
        runTest("analysis/analysis-api/testData/sessions/sessionInvalidation/binaryTreeAdditionalEdge.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 10:43:08 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

            projectBuilds.add(createProjectBuild(A, session, segment));
            projectBuilds.add(createProjectBuild(B, session, segment));
            projectBuilds.add(createProjectBuild(C, session, segment));
            projectBuilds.add(createProjectBuild(X, session, segment));
            projectBuilds.add(createProjectBuild(Y, session, segment));
            projectBuilds.add(createProjectBuild(Z, session, segment));
            return projectBuilds;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top