Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 572 for session1 (0.24 sec)

  1. src/main/java/jcifs/smb1/smb1/DosError.java

                "The parameter is incorrect.", "Too many Uids active on this session.",
                "The Uid is not known as a valid user identifier on this session.", "The pipe has been ended.",
                "The filename, directory name, or volume label syntax is incorrect.", "The directory is not empty.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

     * under the License.
     */
    package org.apache.maven.api.services;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.file.Path;
    
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 09:46:53 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbTreeConnectionTest.java

            SmbTreeImpl tree = mock(SmbTreeImpl.class);
            SmbSessionImpl session = mock(SmbSessionImpl.class);
            SmbTransportImpl transport = mock(SmbTransportImpl.class);
    
            when(tree.isConnected()).thenReturn(true);
            when(tree.getSession()).thenReturn(session);
            when(tree.acquire(false)).thenReturn(tree);
            when(session.getTransport()).thenReturn(transport);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. docs/smb3-features/01-smb3-lease-design.md

        if (msg instanceof Smb2LeaseBreakNotification) {
            Smb2LeaseBreakNotification breakNotif = (Smb2LeaseBreakNotification) msg;
            
            // Get lease manager from session
            LeaseManager leaseManager = session.getLeaseManager();
            
            // Handle the lease break
            leaseManager.handleLeaseBreak(
                breakNotif.getLeaseKey(),
                breakNotif.getNewLeaseState()
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionParser.java

         * @return the parsed version, never {@code null}
         * @throws VersionParserException if the string violates the syntax rules of this scheme
         * @see org.apache.maven.api.Session#parseVersion(String)
         */
        @Nonnull
        Version parseVersion(@Nonnull String version);
    
        /**
         * Parses the specified version range specification, for example "[1.0,2.0)".
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.crawling_info/crawling_info.json

    {
        "properties": {
          "sessionId": {
            "type": "keyword"
          },
          "name": {
            "type": "keyword"
          },
          "expiredTime": {
            "type": "long"
          },
          "createdTime": {
            "type": "long"
          }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 246 bytes
    - Viewed (0)
  7. docs/smb3-features/06-witness-protocol-design.md

        // Perform normal tree connection
        super.connect();
        
        // Register for witness notifications for this share
        if (session.isWitnessEnabled()) {
            String shareName = getPath();  // e.g., "\\server\share"
            session.registerForWitnessNotifications(shareName);
        }
    }
    ```
    
    ### 5.3 File Handle Integration
    ```java
    // In SmbFile.java
    @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java

     * {@linkplain org.apache.maven.api.services.VersionParser} service.
     *
     * @see Version
     * @see VersionConstraint
     * @see org.apache.maven.api.services.VersionParser#parseVersionRange(String)
     * @see org.apache.maven.api.Session#parseVersionRange(String)
     * @since 4.0.0
     */
    @Experimental
    public interface VersionRange {
        /**
         * Determines whether the specified version is contained within this range.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

    import org.apache.maven.api.Constants;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Centralized class for Maven Core feature information.
     * Features configured are supposed to be final in a given maven session.
     *
     * @since 4.0.0
     */
    public final class Features {
    
        private Features() {}
    
        /**
         * Check if the personality is "maven3".
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 04 19:42:23 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

         *
         * @return negotiated multiplex count
         */
        public int getNegotiatedMpxCount() {
            return this.maxMpxCount;
        }
    
        /**
         * Gets the negotiated session key.
         *
         * @return negotiated session key
         */
        public int getNegotiatedSessionKey() {
            return this.sessionKey;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top