Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for get_session (0.06 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

        @Inject
        private Logger logger;
    
        @Inject
        private LegacySupport legacySupport;
    
        private void injectSession(ArtifactResolutionRequest request) {
            MavenSession session = legacySupport.getSession();
    
            if (session != null) {
                request.setOffline(session.isOffline());
                request.setForceUpdate(session.getRequest().isUpdateSnapshots());
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. docs/smb3-features/06-witness-protocol-design.md

        }
    }
    ```
    
    ### 5.3 File Handle Integration
    ```java
    // In SmbFile.java
    @Override
    protected void handleConnectionLoss(IOException error) {
        if (tree.getSession().isWitnessEnabled()) {
            log.info("Connection lost, waiting for witness notification before retry");
            
            // Wait briefly for witness notification before retrying
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  3. 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;
      }
    }
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue May 13 06:30:43 UTC 2025
    - 102.3K bytes
    - Viewed (0)
  4. ci/official/containers/ml_build_arm64/builder.devtoolset/stringop_trunc.patch

    +  char ut_host[UT_HOSTSIZE]
    +    __attribute_nonstring__;	/* Hostname for remote login.  */
       struct exit_status ut_exit;	/* Exit status of a process marked
     				   as DEAD_PROCESS.  */
     /* The ut_session and ut_tv fields must be the same size when compiled
    diff --git a/sysdeps/gnu/bits/utmpx.h b/sysdeps/gnu/bits/utmpx.h
    index f8716ca..13d84e4 100644
    --- a/sysdeps/gnu/bits/utmpx.h
    +++ b/sysdeps/gnu/bits/utmpx.h
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Nov 11 19:25:56 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. 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 {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  6. RELEASE.md

        *   symbolic tensors outside the scope of the model are used in custom loss
            functions. The flag can be disabled for these cases and ideally the
            usage pattern will need to be fixed.
        *   Mark Keras `set_session` as `compat.v1` only.
        *   `tf.keras.estimator.model_to_estimator` now supports exporting to
            `tf.train.Checkpoint format`, which allows the saved checkpoints to be
            compatible with `model.load_weights`.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
Back to top