Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,357 for DOMAIN (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

        /**
         * Creates a domain object with the specified name and type, and adds it to the container.
         *
         * @param name the name of the domain object to be created
         *
         * @param type the type of the domain object to be created
         *
         * @param <U> the type of the domain object to be created
         *
         * @return the created domain object
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/invalid.yaml.golden

      - istio-system/gateway-istio-autogenerated-k8s-gateway-default
      hosts:
      - third.domain.example
      http:
      - name: default.invalid-backendRef-mixed.0
        route:
        - destination:
            host: nonexistent.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

     */
        public String getPassword() {
            return password;
        }
    /**
     * Return the domain and username in the format:
     * <tt>domain\\username</tt>. This is equivalent to <tt>toString()</tt>.
     */
        public String getName() {
            boolean d = domain.length() > 0 && domain.equals( "?" ) == false;
            return d ? domain + "\\" + username : username;
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        }
    
        /**
         * Returns the domain in which the user has an account.
         *
         * @return A <code>String</code> containing the domain for the user.
         */
        public String getDomain() {
            return domain;
        }
    
        /**
         * Sets the domain for this message.
         *
         * @param domain The domain.
         */
        public void setDomain(String domain) {
            this.domain = domain;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.9K bytes
    - Viewed (0)
  5. samples/multicluster/expose-istiod-https.yaml

          # use a valid gateway host and domain for istiod
          - "ISTIOD-HOST.DOMAIN"
        - port:
            name: https-istiodwebhook
            number: 15017
            protocol: https
          tls:
            mode: SIMPLE
            # use a valid credential here
            credentialName: "$CREDENTIAL_NAME"
          hosts:
          # use a valid gateway host and domain for istiod
          - "ISTIOD-HOST.DOMAIN"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar_test.go

    		"http://foo.bar.com",
    		[]string{
    			"a=1; domain=.yo.foo.bar.com",
    			"b=2; domain=.foo.com",
    			"c=3; domain=.bar.foo.com",
    			"d=4; domain=.foo.bar.com.net",
    			"e=5; domain=ar.com",
    			"f=6; domain=.",
    			"g=7; domain=/",
    			"h=8; domain=http://foo.bar.com",
    			"i=9; domain=..foo.bar.com",
    			"j=10; domain=..bar.com",
    			"k=11; domain=.foo.bar.com?blah",
    			"l=12; domain=.foo.bar.com/blah",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InternetDomainName.java

       * </ul>
       *
       * @param domain A domain name (not IP address)
       * @throws IllegalArgumentException if {@code domain} is not syntactically valid according to
       *     {@link #isValid}
       * @since 10.0 (previously named {@code fromLenient})
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
      public static InternetDomainName from(String domain) {
        return new InternetDomainName(checkNotNull(domain));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. .github/workflows/trusted-partners.yml

                const domain = await script.get_email_domain({github, username});
                switch(domain) {
                case "intel.com":
                  console.log(await script.filter({github, context, domain}));
                  break;
                case "apple.com":
                  console.log(await script.filter({github, context, domain}));
                  break;
                case "nvidia.com":
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ntlm/NTLMCredentialsTest.groovy

        public SetSystemProperties systemProperties = new SetSystemProperties()
    
        def "uses domain when encoded in username"() {
            credentials.username >> "domain\\username"
            credentials.password >> "password"
    
            when:
            def ntlmCredentials = new NTLMCredentials(credentials)
    
            then:
            ntlmCredentials.domain == 'DOMAIN'
            ntlmCredentials.username == 'username'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Rule.java

     * limitations under the License.
     */
    package org.gradle.api;
    
    /**
     * <p>A {@code Rule} represents some action to perform when an unknown domain object is referenced. The rule can use the
     * domain object name to add an implicit domain object.</p>
     */
    public interface Rule {
        /**
         * Returns the description of the rule. This is used for reporting purposes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
Back to top