Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 543 for session1 (0.04 sec)

  1. src/main/java/jcifs/netbios/NbtException.java

        /** Called name not present */
        public static final int CALLED_NOT_PRESENT = 0x82;
        /** Insufficient resources to establish session */
        public static final int NO_RESOURCES = 0x83;
        /** Unspecified session service error */
        public static final int UNSPECIFIED = 0x8F;
    
        /** The NetBIOS error class */
        public int errorClass;
        /** The NetBIOS error code */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionInternal.java

         */
        boolean isInUse();
    
        /**
         * Returns the current session key used for signing and encryption.
         *
         * @return the current session key
         * @throws CIFSException if the session key cannot be retrieved
         */
        byte[] getSessionKey() throws CIFSException;
    
        /**
         * Returns the SMB transport associated with this session.
         *
         * @return the transport for this session
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

        int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) {
    
            if (session.transport.server.security == SECURITY_SHARE && (session.auth.hashesExternal || session.auth.password.length() > 0)) {
    
                if (session.transport.server.encryptedPasswords) {
                    // encrypted
                    password = session.auth.getAnsiHash(session.transport.server.encryptionKey);
                    passwordLength = password.length;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTree.java

        int tid;
    
        String share;
        String service = "?????";
        String service0;
        SmbSession session;
        boolean inDfs, inDomainDfs;
        int tree_num; // used by SmbFile.isOpen
    
        SmbTree(final SmbSession session, final String share, final String service) {
            this.session = session;
            this.share = share.toUpperCase();
            if (service != null && !service.startsWith("??")) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java

    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java

                    .session(requireNonNull(session, "session"))
                    .groupId(groupId)
                    .artifactId(artifactId)
                    .version(version)
                    .extension(extension)
                    .build();
        }
    
        @Nonnull
        static ArtifactCoordinatesFactoryRequest build(
                @Nonnull Session session,
                String groupId,
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

         * @throws SettingsBuilderException if the effective settings could not be built
         */
        @Nonnull
        default SettingsBuilderResult build(
                @Nonnull Session session, @Nonnull Source installationSettingsSource, @Nonnull Source userSettingsSource) {
            return build(session, installationSettingsSource, null, userSettingsSource);
        }
    
        /**
         * Builds the effective settings of the specified settings paths.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/web.xml

      <!--                                                                    Session Config -->
      <!--                                                                    ============== -->
    <!--
        <session-config>
            <session-timeout>1</session-timeout>
        </session-config>
      -->
    
      <!-- ================================================================================= -->
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue May 06 09:19:22 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

         *
         * @return the pipe type
         */
        int getPipeType();
    
        /**
         * Gets the session key from the underlying SMB session.
         *
         * @return session key of the underlying smb session
         * @throws CIFSException if an error occurs retrieving the session key
         */
        byte[] getSessionKey() throws CIFSException;
    
        /**
         * Gets the input stream for reading from this pipe.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManager.java

         *
         * @param session the Maven session, must not be {@code null}
         * @param type the type, must not be {@code null}
         * @param requirements the requirements, may be {@code null}
         * @return the matching toolchains, never {@code null}
         * @since 3.3.0
         */
        List<Toolchain> getToolchains(MavenSession session, String type, Map<String, String> requirements);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Feb 12 13:13:28 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top