Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,082 for realm (2.3 sec)

  1. okhttp/src/test/java/okhttp3/HeadersChallengesTest.kt

        val headers =
          Headers.Builder()
            .add("WWW-Authenticate", "Basic realm = \"myrealm\",Basic realm=myotherrealm")
            .build()
        assertThat(headers.parseChallenges("WWW-Authenticate")).containsExactly(
          Challenge("Basic", mapOf("realm" to "myrealm")),
          Challenge("Basic", mapOf("realm" to "myotherrealm")),
        )
      }
    
      @Test fun separatorsBeforeFirstAuthParam() {
        val headers =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    rlds; public synchronized class ClassWorld { private java.util.Map realms; public void ClassWorld(String, ClassLoader); public void ClassWorld(); public realm.ClassRealm newRealm(String) throws realm.DuplicateRealmExcept; public realm.ClassRealm newRealm(String, ClassLoader) throws realm.DuplicateRealmExcept; public void disposeRealm(String) throws realm.NoSuchRealmException; public realm.ClassRealm getRealm(String) throws realm.NoSuchRealmException; public java.util.Collection getRealms(); } or...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    rlds; public synchronized class ClassWorld { private java.util.Map realms; public void ClassWorld(String, ClassLoader); public void ClassWorld(); public realm.ClassRealm newRealm(String) throws realm.DuplicateRealmExcept; public realm.ClassRealm newRealm(String, ClassLoader) throws realm.DuplicateRealmExcept; public void disposeRealm(String) throws realm.NoSuchRealmException; public realm.ClassRealm getRealm(String) throws realm.NoSuchRealmException; public java.util.Collection getRealms(); } or...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 41.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        /**
         * Creates a new class realm with the specified parent and imports.
         *
         * @param baseRealmId The base id to use for the new realm, must not be {@code null}.
         * @param type The type of the class realm, must not be {@code null}.
         * @param parent The parent realm for the new realm, may be {@code null}.
         * @param parentImports The packages/types to import from the parent realm, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

    public interface ClassRealmManager {
    
        /**
         * Gets the class realm hosting the Maven core.
         *
         * @return The class realm hosting the Maven core, never {@code null}.
         */
        ClassRealm getCoreRealm();
    
        /**
         * Gets the class realm exposing the Maven API. This is basically a restricted view on the Maven core realm.
         *
         * @return The class realm exposing the Maven API, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java

            /**
             * A class realm for a build extension.
             */
            Extension,
    
            /**
             * A class realm for a plugin.
             */
            Plugin,
        }
    
        /**
         * Gets the type of the class realm.
         *
         * @return The type of the class realm, never {@code null}.
         */
        RealmType getType();
    
        /**
         * Gets the parent class realm (if any).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Challenge.kt

    ) {
      /**
       * Returns the auth params, including [realm] and [charset] if present, but as
       * strings. The map's keys are lowercase and should be treated case-insensitively.
       */
      @get:JvmName("authParams")
      val authParams: Map<String?, String>
    
      /** Returns the protection space. */
      @get:JvmName("realm")
      val realm: String?
        get() = authParams["realm"]
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/plugin-execution-isolation.apt

     JAR plugin as well as its dependencies. The realms noted above are setup
     in a hierarchical structure where the resources in the parent realms are
     available but the <<realm is searched first before a search is made in
     the parent realm>>.
    
     Plugins are guaranteed to be provided the resources found in
     <<<plexus.core>>> and <<<plexus.core.maven>>> realms at run-time if required.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 03 09:12:28 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    rlds; public synchronized class ClassWorld { private java.util.Map realms; public void ClassWorld(String, ClassLoader); public void ClassWorld(); public realm.ClassRealm newRealm(String) throws realm.DuplicateRealmExcept; public realm.ClassRealm newRealm(String, ClassLoader) throws realm.DuplicateRealmExcept; public void disposeRealm(String) throws realm.NoSuchRealmException; public realm.ClassRealm getRealm(String) throws realm.NoSuchRealmException; public java.util.Collection getRealms(); } or...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

            public ClassRealm getRealm() {
                return realm;
            }
    
            public List<Artifact> getArtifacts() {
                return artifacts;
            }
    
            private final ClassRealm realm;
    
            private final List<Artifact> artifacts;
    
            public CacheRecord(ClassRealm realm, List<Artifact> artifacts) {
                this.realm = realm;
                this.artifacts = artifacts;
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top