Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,980 for basic_ (0.37 sec)

  1. okhttp-logging-interceptor/api/logging-interceptor.api

    }
    
    public final class okhttp3/logging/HttpLoggingInterceptor$Companion {
    }
    
    public final class okhttp3/logging/HttpLoggingInterceptor$Level : java/lang/Enum {
    	public static final field BASIC Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field BODY Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field HEADERS Lokhttp3/logging/HttpLoggingInterceptor$Level;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComWrite.java

    import jcifs.internal.smb1.ServerMessageBlock;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB1 COM_WRITE command implementation.
     *
     * This command writes data to an open file on the server.
     * It's the basic write operation in the SMB1 protocol.
     */
    public class SmbComWrite extends ServerMessageBlock {
    
        private int fid, count, offset, remaining, off;
        private byte[] b;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

    import jcifs.smb1.util.Base64;
    import jcifs.smb1.util.LogStream;
    
    /**
     * This servlet Filter can be used to negotiate password hashes with
     * MSIE clients using NTLM SSP. This is similar to {@code Authentication:
     * BASIC} but weakly encrypted and without requiring the user to re-supply
     * authentication credentials.
     * <p>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            request.setRequestURI("/api");
            assertFalse(manager.matches(request));
        }
    
        public void test_process_basicExecution() throws IOException, ServletException {
            // Test basic process execution
            TestWebApiManager manager = new TestWebApiManager("/api");
    
            TestHttpServletRequest request = new TestHttpServletRequest();
            request.setRequestURI("/api/test");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_de.properties

    labels.ldapAdminSecurityPrincipal=Bind-DN
    labels.ldapAdminSecurityCredentials=Passwort
    labels.ldapBaseDn=Basis-DN
    labels.ldap_provider_url=LDAP-URL
    labels.ldap_security_principal=Benutzer-DN
    labels.ldap_admin_security_principal=Bind-DN
    labels.ldap_admin_security_credentials=Passwort
    labels.ldap_base_dn=Basis-DN
    labels.ldapAccountFilter=Kontofilter
    labels.ldapGroupFilter=Gruppenfilter
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  6. src/test/resources/jcifs/smb1/util/mime.map

    application/vnd.ms-project     mpp              # MS Project
    application/x-wais-source      src              # WAIS Sources
    application/zip                zip jar          # ZIP Compressed File
    audio/basic                    au snd           # Audio Sound File
    audio/x-aiff                   aif aiff aifc    # AIFF Sound File
    audio/x-midi                   mid              # MIDI Sound File
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Response.kt

       * If a challenge uses the `token68` variant instead of auth params, there is exactly one
       * auth param in the challenge at key null. Invalid headers and challenges are ignored.
       * No semantic validation is done, for example that `Basic` auth must have a `realm`
       * auth param, this is up to the caller that interprets these challenges.
       */
      fun challenges(): List<Challenge> {
        return headers.parseChallenges(
          when (code) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 14:39:28 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/fscc/FileBasicInfo.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * Represents the FILE_BASIC_INFORMATION structure used in SMB2/3 file system control code (FSCC) operations.
     * This structure contains basic file information including creation time, last access time, last write time,
     * change time, and file attributes for querying and setting file metadata.
     */
    public class FileBasicInfo implements BasicFileInformation {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NetworkExplorer.java

        private String style;
        /** Flag indicating if credentials were supplied */
        private boolean credentialsSupplied;
        /** Flag to enable basic authentication */
        private boolean enableBasic;
        /** Flag to allow insecure basic authentication */
        private boolean insecureBasic;
        /** The authentication realm */
        private String realm;
        /** The default domain for authentication */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
        // Authentication Type Constants
        // ============================================================
    
        /** Basic authentication type identifier. */
        public static final String BASIC = "BASIC";
    
        /** Digest authentication type identifier. */
        public static final String DIGEST = "DIGEST";
    
        /** NTLM authentication type identifier. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top