Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,082 for realm (0.04 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

            insecureBasic = Boolean.valueOf(
                    Config.getProperty("jcifs.smb1.http.insecureBasic")).booleanValue();
            realm = Config.getProperty("jcifs.smb1.http.basicRealm");
            if (realm == null) realm = "jCIFS";
    
            if(( level = Config.getInt( "jcifs.smb1.util.loglevel", -1 )) != -1 ) {
                LogStream.setLevel( level );
            }
            if( log.level > 2 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

    import org.apache.maven.RepositoryUtils;
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.project.MavenProject;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.codehaus.plexus.classworlds.realm.NoSuchRealmException;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Disposable;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.graph.DependencyFilter;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

                this.realm = p.getProperty("jcifs.http.basicRealm");
                this.netbiosLookupRespLimit = Config.getInt(p, "jcifs.netbios.lookupRespLimit", 3);
                this.netbiosCacheTimeout = Config.getInt(p, "jcifs.netbios.cachePolicy", 60 * 10) * 60; /* 10 hours */
    
                if ( this.realm == null )
                    this.realm = "jCIFS";
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/test/projects/plugin-manager/mng-5003-plugin-realm-cache/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng5003</groupId>
      <artifactId>mng-5003-plugin-realm-cache</artifactId>
      <version>1.0</version>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 04 20:48:30 UTC 2011
    - 190 bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt

                url.scheme,
                challenge.realm,
                challenge.scheme,
                url.toUrl(),
                Authenticator.RequestorType.PROXY,
              )
            } else {
              Authenticator.requestPasswordAuthentication(
                url.host,
                proxy.connectToInetAddress(url, dns),
                url.port,
                url.scheme,
                challenge.realm,
                challenge.scheme,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/CoreRealm.java

    import org.codehaus.plexus.classworlds.ClassWorld;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    
    /**
     * Access to core {@link ClassRealm}.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface CoreRealm {
    
        /**
         * Obtain the {@link ClassRealm} used for Maven Core.
         *
         * @return the class realm of core.
         */
        @Nonnull
        ClassRealm getRealm();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AuthScheme.groovy

                        if (!(auth instanceof Authentication.User)) {
                            res.setHeader(HttpHeader.WWW_AUTHENTICATE.asString(), "basic realm=\"" + _loginService.getName() + '"')
                            res.sendError(HttpServletResponse.SC_NOT_FOUND)
                            return Authentication.SEND_CONTINUE
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            }
    
            enableBasic = Config.getBoolean("jcifs.smb1.http.enableBasic", false );
            insecureBasic = Config.getBoolean("jcifs.smb1.http.insecureBasic", false );
            realm = Config.getProperty("jcifs.smb1.http.basicRealm");
            if (realm == null) realm = "jCIFS";
            defaultDomain = Config.getProperty("jcifs.smb1.smb.client.domain");
    
            if(( level = Config.getInt( "jcifs.smb1.util.loglevel", -1 )) != -1 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
Back to top