Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,357 for DOMAIN (1.75 sec)

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

        private String authProperty;
    
        private String authMethod;
    
        private boolean handshakeComplete;
    
        static {
            String domain = System.getProperty("http.auth.ntlm.domain");
            if (domain == null) domain = Type3Message.getDefaultDomain();
            DEFAULT_DOMAIN = domain;
        }
    
        public NtlmHttpURLConnection(HttpURLConnection connection) {
            super(connection.getURL());
            this.connection = connection;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/kotlin/build.gradle.kts

    // tag::root[]
    plugins {
        id("com.github.johnrengelman.shadow") version "7.1.2" apply false
        id("io.ratpack.ratpack-java") version "1.8.2" apply false
    }
    // end::root[]
    
    project(":domain") {
        apply(plugin = "java-library")
        repositories { mavenCentral() }
        dependencies {
            "api"("javax.measure:unit-api:1.0")
            "implementation"("tec.units:unit-ri:1.0.3")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmServlet.java

     * to protect content with NTLM HTTP Authentication. Servlets that
     * extend this abstract base class may be authenticated against an SMB
     * server or domain controller depending on how the
     * <tt>jcifs.smb.client.domain</tt> or <tt>jcifs.http.domainController</tt>
     * properties are be specified. <b>With later containers the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/plugins/ide/api/PropertyListGeneratorTask.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * A convenience superclass for those tasks which generate Property List configuration files from a domain object of type T.
     *
     * @param <T> The domain object type.
     * @since 4.2
     */
    @Incubating
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/ClientAndServer.java

    import okhttp3.Request;
    import okhttp3.Response;
    import okhttp3.mockwebserver.MockResponse;
    import okhttp3.mockwebserver.MockWebServer;
    
    /**
     * Create UNIX domain sockets for MockWebServer and OkHttp and connect 'em together. Note that we
     * cannot do TLS over domain sockets.
     */
    public class ClientAndServer {
      public void run() throws Exception {
        File socketFile = new File("/tmp/ClientAndServer.sock");
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 24 03:46:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/secure/bidirule/bidirule.go

    //
    // A "Bidi domain name" is a domain name that contains at least one RTL label.
    //
    //  The following guarantees can be made based on the above:
    //
    //  o  In a domain name consisting of only labels that satisfy the rule,
    //     the requirements of Section 3 are satisfied.  Note that even LTR
    //     labels and pure ASCII labels have to be tested.
    //
    //  o  In a domain name consisting of only LDH labels (as defined in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                final String workstation = parameterMap.get("workstation");
                final String domain = parameterMap.get("domain");
                return new NTCredentials(getUsername(), getPassword(), workstation == null ? StringUtil.EMPTY : workstation,
                        domain == null ? StringUtil.EMPTY : domain);
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. samples/bookinfo/policy/productpage_envoy_ratelimit.yaml

            value:
              name: envoy.ratelimit
              typed_config:
                "@type": type.googleapis.com/envoy.extensions.filters.http.ratelimit.v3.RateLimit
                # domain can be anything! Match it to the ratelimter service config
                domain: productpage-ratelimit
                failure_mode_deny: true
                rate_limit_service:
                  grpc_service:
                    envoy_grpc:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 10 15:30:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/tls.yaml

      listeners:
      - name: passthrough
        port: 34000
        protocol: TLS
        allowedRoutes:
          namespaces:
            from: All
        tls:
          mode: Passthrough
      - name: terminate
        hostname: "domain.example"
        port: 34000
        protocol: HTTPS
        allowedRoutes:
          namespaces:
            from: All
        tls:
          mode: Terminate
          certificateRefs:
          - name: my-cert-http
      - name: terminate-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

      ) {
        fun writeOut(sink: BufferedSink) {
          with(sink) {
            writeInt(totalRuleBytes)
            for (domain in sortedRules) {
              write(domain).writeByte(NEWLINE)
            }
            writeInt(totalExceptionRuleBytes)
            for (domain in sortedExceptionRules) {
              write(domain).writeByte(NEWLINE)
            }
          }
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top