Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,158 for session_ (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/g3doc/enable_mlir_bridge.md

    ```
    session_config = tf.ConfigProto(
      ......
      experimental=tf.ConfigProto.Experimental(
        enable_mlir_bridge=True,
      ),
      ......
    )
    ```
    
    ## For TF 2.x-Based Models
    
    Sessions and Session Configs are no longer available in TF 2.x. Instead, there
    is a global **Context** that holds all the equivalences. You can manipulate the
    **Context** with following code. Note that it must be added early in your
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 13 23:12:13 UTC 2020
    - 989 bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

        @OptIn(UnresolvedExpressionTypeAccess::class)
        val annotationClass = annotation.coneTypeOrNull?.toClassSymbol(session)?.fir ?: return null
    
        // The search is done via scope to force Java enhancement. Annotation class might be a 'FirJavaClass'
        return annotationClass
            .unsubstitutedScope(session, session.getScopeSession(), withForcedTypeCalculator = false, memberRequiredPhase = null)
            .getDeclaredConstructors()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

            if (sessionId == null) { // create session id
                sessionId = RandomStringUtils.randomAlphabetic(15);
            }
            resultBuf.append("Session Id: ").append(sessionId).append("\n");
            if (jobExecutor != null) {
                jobExecutor.addShutdownListener(() -> ComponentUtil.getProcessHelper().destroyProcess(sessionId));
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/SuggestJob.java

            if (sessionId == null) { // create session id
                sessionId = RandomStringUtils.randomAlphabetic(15);
            }
            resultBuf.append("Session Id: ").append(sessionId).append("\n");
            if (jobExecutor != null) {
                jobExecutor.addShutdownListener(() -> ComponentUtil.getProcessHelper().destroyProcess(sessionId));
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java

    /**
     * UrlFilter checks if a given url is a target one.
     *
     * @author shinsuke
     *
     */
    public interface UrlFilter {
    
        /**
         * Initialize a url filter by sessionId.
         *
         * @param sessionId Session ID
         */
        void init(String sessionId);
    
        /**
         * Check if a given url is a target.
         *
         * @param url URL
         * @return true if url is matched
         */
        boolean match(String url);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

        interface UserHome extends Global {}
    
        /**
         * These services are reused across build sessions.
         * <p>
         * Generally, one regular Gradle invocation is conceptually a session.
         * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

                    .setLocalRepository(getLocalRepository());
    
            DefaultRepositorySystemSession session = new DefaultRepositorySystemSession();
            LocalRepository localRepo =
                    new LocalRepository(request.getLocalRepository().getBasedir());
            session.setLocalRepositoryManager(new SimpleLocalRepositoryManagerFactory().newInstance(session, localRepo));
            LegacySupport legacySupport = container.lookup(LegacySupport.class);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     * It is crucial to avoid leaking the analysis session outside the read action it was created in, as the analysis session itself and all
     * entities retrieved from it will become invalid. An analysis session also shouldn't be leaked from the [analyze] call it was created in.
     *
     * It is forbidden to store an analysis session in a variable, parameter, or property. From the [analyze] block which provides the analysis
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

            get() = useSiteSession.symbolProvider.symbolNamesProvider
    
        private fun collectGeneratedTopLevelClassifiers(packageFqName: FqName, session: FirSession): Set<Name> {
            val declarationGenerators = session.extensionService.declarationGenerators
    
            val generatedTopLevelClassifiers = declarationGenerators
                .asSequence()
                .flatMap {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/crypto/tls/quic.go

    	// EnableStoreSessionEvent may be set to true to enable the
    	// [QUICStoreSession] event for client connections.
    	// When this event is enabled, sessions are not automatically
    	// stored in the client session cache.
    	// The application should use [QUICConn.StoreSession] to store sessions.
    	EnableStoreSessionEvent bool
    }
    
    // A QUICEventKind is a type of operation on a QUIC connection.
    type QUICEventKind int
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top