Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 293 for DOMAIN (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"A pair of x509 certificate and private key file paths, optionally suffixed with a list of "+
    		"domain patterns which are fully qualified domain names, possibly with prefixed wildcard "+
    		"segments. The domain patterns also allow IP addresses, but IPs should only be used if "+
    		"the apiserver has visibility to the IP address requested by a client. "+
    		"If no domain patterns are provided, the names of the certificate are "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. cmd/handler-utils.go

    	xhost, err := xnet.ParseHost(host)
    	if err != nil {
    		return "", err
    	}
    
    	for _, domain := range domains {
    		if xhost.Name == minioReservedBucket+"."+domain {
    			continue
    		}
    		if !strings.HasSuffix(xhost.Name, "."+domain) {
    			continue
    		}
    		bucket := strings.TrimSuffix(xhost.Name, "."+domain)
    		return SlashSeparator + pathJoin(bucket, path), nil
    	}
    	return path, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/shake.go

    // a customizable variant of SHAKE128.
    // N is used to define functions based on cSHAKE, it can be empty when plain cSHAKE is
    // desired. S is a customization byte string used for domain separation - two cSHAKE
    // computations on same input with different S yield unrelated outputs.
    // When N and S are both empty, this is equivalent to NewShake128.
    func NewCShake128(N, S []byte) ShakeHash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    			DNSNames: []string{"test-domain.space"},
    		},
    		Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    	}
    
    	cert := &x509.Certificate{
    		Subject: pkix.Name{
    			CommonName:   "test-common-name",
    			Organization: testCertOrganization,
    		},
    		ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		DNSNames:    []string{"test-domain.space"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    						GroupVersionKind:  gvk.VirtualService,
    						Name:              name,
    						Annotations:       routeMeta(obj),
    						Namespace:         obj.Namespace,
    						Domain:            ctx.Domain,
    					},
    					Spec: &istio.VirtualService{
    						Hosts:    []string{h},
    						Gateways: []string{parent.InternalName},
    						Http:     routes,
    					},
    				}
    				count++
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. samples/ratelimit/rate-limit-service.yaml

    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    #  data:
    #    config.yaml: |
    #      domain: echo-ratelimit
    #      descriptors:
    #        - key: PATH
    #          value: "/"
    #          rate_limit:
    #            unit: minute
    #            requests_per_unit: 1
    #        - key: PATH
    #          rate_limit:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins and domain objects for building different native languages"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
            "JavaLangClash", // 1 occurrences
            "MixedMutabilityReturnType", // 1 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
            "UnusedMethod", // 2 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/first-steps.md

    # Security - First Steps
    
    Let's imagine that you have your **backend** API in some domain.
    
    And you have a **frontend** in another domain or in a different path of the same domain (or in a mobile application).
    
    And you want to have a way for the frontend to authenticate with the backend, using a **username** and **password**.
    
    We can use **OAuth2** to build that with **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    		if !ok {
    			continue
    		}
    
    		if mailbox.local != test.localPart || mailbox.domain != test.domain {
    			t.Errorf("#%d: %q parsed as (%q, %q), but wanted (%q, %q)", i, test.in, mailbox.local, mailbox.domain, test.localPart, test.domain)
    		}
    	}
    }
    
    func TestBadNamesInConstraints(t *testing.T) {
    	constraintParseError := func(err error) bool {
    		str := err.Error()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    		"Enable block profiling, if profiling is enabled")
    	fs.StringVar(&o.DebugSocketPath, "debug-socket-path", o.DebugSocketPath,
    		"Use an unprotected (no authn/authz) unix-domain socket for profiling with the given path")
    	fs.BoolVar(&o.EnablePriorityAndFairness, "enable-priority-and-fairness", o.EnablePriorityAndFairness, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top