Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 546 for DOMAIN (0.14 sec)

  1. 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)
  2. src/main/java/jcifs/smb/DfsImpl.java

                        do {
                            String domain = dr.getServer().toLowerCase();
                            entry.map.put(domain, new HashMap<String, CacheEntry<DfsReferralDataInternal>>());
                            if ( log.isTraceEnabled() ) {
                                log.trace("Inserting cache entry for domain " + domain + ": " + dr);
                            }
                            dr = dr.next();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Cut.java

          return domain.minValue();
        }
    
        @Override
        Comparable<?> greatestValueBelow(DiscreteDomain<Comparable<?>> domain) {
          throw new AssertionError();
        }
    
        @Override
        Cut<Comparable<?>> canonical(DiscreteDomain<Comparable<?>> domain) {
          try {
            return Cut.<Comparable<?>>belowValue(domain.minValue());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/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 this.domain;
        }
    
    
        /**
         * Sets the domain for this message.
         *
         * @param domain
         *            The domain.
         */
        public void setDomain ( String domain ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion_test.go

    		Ports:    ports,
    		Hostname: "httpbin-apple.apple.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "banana",
    		},
    		Ports:    ports,
    		Hostname: "httpbin-banana.banana.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "default",
    		},
    		Ports:    ports,
    		Hostname: "httpbin-second.default.svc.domain.suffix",
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

    import com.tngtech.archunit.core.domain.JavaAnnotation;
    import com.tngtech.archunit.core.domain.JavaClass;
    import com.tngtech.archunit.core.domain.JavaGenericArrayType;
    import com.tngtech.archunit.core.domain.JavaMember;
    import com.tngtech.archunit.core.domain.JavaMethod;
    import com.tngtech.archunit.core.domain.JavaModifier;
    import com.tngtech.archunit.core.domain.JavaParameter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ContiguousSet.java

          C beforeUpper = requireNonNull(range.upperBound.greatestValueBelow(domain));
          // Per class spec, we are allowed to throw CCE if necessary
          empty = Range.compareOrThrow(afterLower, beforeUpper) > 0;
        }
    
        return empty
            ? new EmptyContiguousSet<C>(domain)
            : new RegularContiguousSet<C>(effectiveRange, domain);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * 
         * @param domain
         * @param username
         * @param password
         */
        public NtlmPasswordAuthenticator ( String domain, String username, String password ) {
            this(domain, username, password, AuthenticationType.USER);
        }
    
    
        /**
         * Create username/password credentials with specified domain
         * 
         * @param domain
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
Back to top