Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 337 for realm (4.45 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/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)
  3. 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)
  4. 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)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    abstract PlexusContainer createChildContainer(String, classworlds.realm.ClassRealm) throws PlexusContainerExcep; public abstract classworlds.realm.ClassRealm createComponentRealm(String, java.util.List) throws PlexusContainerExcep; public abstract classworlds.realm.ClassRealm getComponentRealm(String); public abstract classworlds.realm.ClassRealm getLookupRealm(); public abstract classworlds.realm.ClassRealm setLookupRealm(classworlds.realm.ClassRealm); public abstract classworlds.realm.ClassRealm ge...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 35.3K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                    + extension.getVersion();
            final ClassRealm realm = classWorld.newRealm(realmId, null);
            Set<String> providedArtifacts = Collections.emptySet();
            String classLoadingStrategy = extension.getClassLoadingStrategy();
            if (STRATEGY_PARENT_FIRST.equals(classLoadingStrategy)) {
                realm.importFrom(parentRealm, "");
            } else if (STRATEGY_PLUGIN.equals(classLoadingStrategy)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    java.util.Map, java.util.List) throws PlexusContainerExcep; public abstract classworlds.realm.ClassRealm createComponentRealm(String, java.util.List) throws PlexusContainerExcep; public abstract classworlds.realm.ClassRealm getComponentRealm(String); public abstract classworlds.realm.ClassRealm getLookupRealm(); public abstract classworlds.realm.ClassRealm setLookupRealm(classworlds.realm.ClassRealm); public abstract classworlds.realm.ClassRealm getLookupRealm(Object); static void <clinit>(); } org/codehaus/...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32.4K bytes
    - Viewed (0)
  8. fastapi/security/http.py

            self.realm = realm
            self.auto_error = auto_error
    
        async def __call__(  # type: ignore
            self, request: Request
        ) -> Optional[HTTPBasicCredentials]:
            authorization = request.headers.get("Authorization")
            scheme, param = get_authorization_scheme_param(authorization)
            if self.realm:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                         * plugins, yet the components provided by the extension (e.g. artifact handlers) must be
                         * accessible, i.e. we still must import the extension realm into the project realm.
                         */
                        exports = Arrays.asList(extensionRealm.getId());
                    }
    
                    for (String export : exports) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/bootstrap/instance_test.go

    			if err = protomarshal.Unmarshal(read, realM); err != nil {
    				t.Fatalf("invalid json %v\n%s", err, string(read))
    			}
    
    			if err = realM.Validate(); err != nil {
    				t.Fatalf("invalid generated file %s: %v", c.base, err)
    			}
    
    			checkStatsMatcher(t, realM, goldenM, c.stats)
    
    			if c.check != nil {
    				c.check(realM, t)
    			}
    
    			checkOpencensusConfig(t, realM, goldenM)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top