Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,357 for DOMAIN (0.12 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

            if( DOMAIN == null ) {
                throw new SmbException( "A domain was not specified" );
            }
    synchronized (DOMAIN) {
                long now = System.currentTimeMillis();
                int retry = 1;
    
                do {
                    if (dc_list_expiration < now) {
                        NbtAddress[] list = NbtAddress.getAllByName( DOMAIN, 0x1C, null, null );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

        /**
         * Creates a new {@link DomainObjectSet} for managing objects of the specified type.
         *
         * @param elementType The type of objects for the domain object set to contain.
         * @param <T> The type of objects for the domain object set to contain.
         * @return The domain object set. Never returns null.
         * @since 5.5
         */
        <T> DomainObjectSet<T> domainObjectSet(Class<T> elementType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/dummy_publicsuffix_test.go

    // license that can be found in the LICENSE file.
    
    package cookiejar_test
    
    import "net/http/cookiejar"
    
    type dummypsl struct {
    	List cookiejar.PublicSuffixList
    }
    
    func (dummypsl) PublicSuffix(domain string) string {
    	return domain
    }
    
    func (dummypsl) String() string {
    	return "dummy"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 03:47:00 UTC 2016
    - 426 bytes
    - Viewed (0)
  4. src/crypto/x509/parser.go

    					}
    				} else {
    					// Otherwise it's a domain name.
    					domain := constraint
    					if len(domain) > 0 && domain[0] == '.' {
    						domain = domain[1:]
    					}
    					if _, ok := domainToReverseLabels(domain); !ok {
    						return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/ProviderMigrationArchitectureTest.java

    package org.gradle.architecture.test;
    
    import com.tngtech.archunit.base.DescribedPredicate;
    import com.tngtech.archunit.base.HasDescription;
    import com.tngtech.archunit.core.domain.JavaClass;
    import com.tngtech.archunit.core.domain.JavaMethod;
    import com.tngtech.archunit.core.domain.properties.HasSourceCodeLocation;
    import com.tngtech.archunit.junit.AnalyzeClasses;
    import com.tngtech.archunit.junit.ArchTest;
    import com.tngtech.archunit.lang.ArchCondition;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/my-svc.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-my-svc
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/zero.yaml

    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
      - name: tcp
        port: 34000
        protocol: TCP
        allowedRoutes:
          namespaces:
            from: All
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/multi-gateway.yaml

    spec:
      gatewayClassName: istio
      addresses:
      - type: Hostname
        value: istio-ingressgateway
      - type: Hostname
        value: istio-ingressgateway.not-default.svc.domain.suffix
      - type: Hostname
        value: example.com
      listeners:
      - name: http
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
      - name: tcp
        port: 34000
        protocol: TCP
        allowedRoutes:
          namespaces:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 672 bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "isolation-istio.gateway-conformance-infra.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

    import java.time.Duration;
    import java.util.function.BiFunction;
    
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.assignableTo;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.implement;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.resideInAnyPackage;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.type;
    import static com.tngtech.archunit.lang.conditions.ArchConditions.not;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top