Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,357 for DOMAIN (0.15 sec)

  1. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

              name: envoy.filters.http.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: echo-ratelimit
                failure_mode_deny: true
                rate_limit_service:
                  grpc_service:
                    envoy_grpc:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // adding more fine-grained options, where later options override earlier
    // options.
    func New(o ...Option) *Profile {
    	p := &Profile{}
    	apply(&p.options, o)
    	return p
    }
    
    // ToASCII converts a domain or domain label to its ASCII form. For example,
    // ToASCII("bücher.example.com") is "xn--bcher-kva.example.com", and
    // ToASCII("golang") is "golang". If an error is encountered it will return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crd/conversion_test.go

    					Namespace:        "default",
    					Domain:           "cluster",
    				},
    				Spec: &gateway.HTTPRouteSpec{
    					Hostnames: []gateway.Hostname{"example.com"},
    				},
    			},
    		},
    		{
    			name: "gateway status",
    			cfg: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.HTTPRoute,
    					Name:             "test",
    					Namespace:        "default",
    					Domain:           "cluster",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/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/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      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
    - 1019 bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/DfsTest.java

            return doResolve(link, relative, domain, false);
        }
    
    
        /**
         * @return
         * @throws URISyntaxException
         * @throws CIFSException
         */
        private DfsReferralData doResolve ( String link, String relative, boolean domain, boolean upper ) throws URISyntaxException, CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                final String domain = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".domain");
                credentials = new NTCredentials(username, password == null ? StringUtil.EMPTY : password,
                        workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain);
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. cluster/gce/windows/testonly/user-profile.psm1

        $pathLen = $sb.Capacity;
     
        Write-Verbose "Creating user profile for $Username";
        #$SID= ((get-aduser -id $UserName -ErrorAction Stop).sid.value)
      if($domain)
       {
            $objUser = New-Object System.Security.Principal.NTAccount($domain, $UserName)
            $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier])
            $SID = $strSID.Value
       }
       else 
       {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  8. src/net/lookup.go

    	}
    	return cname, filteredAddrs, nil
    }
    
    // LookupMX returns the DNS MX records for the given domain name sorted by preference.
    //
    // The returned mail server names are validated to be properly
    // formatted presentation-format domain names. If the response contains
    // invalid names, those records are filtered out and an error
    // will be returned alongside the remaining results, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/reference-policy-tls.yaml

    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: cross
        hostname: "cert1.domain.example"
        port: 443
        protocol: HTTPS
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
                kubernetes.io/metadata.name: "cert"
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/ExtensiblePolymorphicDomainObjectContainer.java

         *
         * <p>In general, registering a binding is preferable over implementing and registering a factory.
         *
         * @param type a public domain object type
         * @param implementationType the corresponding implementation type
         * @param <U> a public domain object type
         */
        <U extends T> void registerBinding(Class<U> type, final Class<? extends U> implementationType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 03 14:28:15 UTC 2020
    - 3.2K bytes
    - Viewed (0)
Back to top