- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 257 for realm (0.03 sec)
-
impl/maven-core/src/main/java/org/apache/maven/extension/internal/CoreExports.java
} public CoreExports(ClassRealm realm, Set<String> exportedArtifacts, Set<String> exportedPackages) { this.artifacts = Collections.unmodifiableSet(new HashSet<>(exportedArtifacts)); this.packages = exportedPackages.stream() .collect(collectingAndThen(toMap(identity(), v -> realm), Collections::unmodifiableMap)); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManagerDelegate.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.classrealm; import org.codehaus.plexus.classworlds.realm.ClassRealm; /** * ClassRealmManagerDelegate is used to perform addition configuration of * class realms created by ClassRealmManager. * */ public interface ClassRealmManagerDelegate { void setupRealm(ClassRealm classRealm, ClassRealmRequest request);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
impl/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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
this.insecureBasic = Config.getBoolean(p, "jcifs.http.insecureBasic", false); this.realm = p.getProperty("jcifs.http.basicRealm"); if ( this.realm == null ) this.realm = "jCIFS"; this.defaultDomain = p.getProperty("jcifs.smb.client.domain"); this.transportContext = new BaseContext(new PropertyConfiguration(p));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 21.3K bytes - Viewed (0) -
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 22 03:57:31 UTC 2020 - 19.7K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/org/apache/maven/artifact/resolver/ArtifactResolverTest.xml
<role>org.apache.maven.artifact.resolver.ArtifactResolver</role> <role-hint>default</role-hint> <implementation>org.apache.maven.artifact.resolver.DefaultArtifactResolver</implementation> <isolated-realm>false</isolated-realm> <requirements> <requirement> <role>org.codehaus.plexus.logging.Logger</role> <role-hint>default</role-hint> <field-name>logger</field-name> </requirement>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
/** * Sent by the server in the Type 2 message to indicate that the * target authentication realm is a domain. */ public static final int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000; /** * Sent by the server in the Type 2 message to indicate that the * target authentication realm is a server. */ public static final int NTLMSSP_TARGET_TYPE_SERVER = 0x00020000; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
/** * Sent by the server in the Type 2 message to indicate that the * target authentication realm is a domain. */ public static final int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000; /** * Sent by the server in the Type 2 message to indicate that the * target authentication realm is a server. */ public static final int NTLMSSP_TARGET_TYPE_SERVER = 0x00020000; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
internal/config/identity/openid/providercfg.go
} var err error switch vendor { case keyCloakVendor: adminURL := cfgGet(KeyCloakAdminURL) realm := cfgGet(KeyCloakRealm) p.provider, err = provider.KeyCloak( provider.WithAdminURL(adminURL), provider.WithOpenIDConfig(provider.DiscoveryDoc(p.DiscoveryDoc)), provider.WithTransport(transport), provider.WithRealm(realm), ) return err default: return fmt.Errorf("Unsupported vendor %s", keyCloakVendor) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 4.6K bytes - Viewed (0)