Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 311 for DOMAIN (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar(&serverArgs.RegistryOptions.KubeOptions.DomainSuffix, "domain", constants.DefaultClusterLocalDomain,
    		"DNS domain suffix")
    	c.PersistentFlags().StringVar((*string)(&serverArgs.RegistryOptions.KubeOptions.ClusterID), "clusterID", features.ClusterName,
    		"The ID of the cluster that this Istiod instance resides")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/phases/certs/certlist_test.go

    			Name:     "test-ca",
    			BaseName: "test-ca",
    		},
    		{
    			config: pkiutil.CertConfig{
    				Config: certutil.Config{
    					AltNames: certutil.AltNames{
    						DNSNames: []string{"test-domain.space"},
    					},
    					Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    				},
    			},
    			configMutators: []configMutatorsFunc{
    				setCommonNameToNodeName(),
    			},
    			CAName:   "test-ca",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. pkg/apis/storage/validation/validation_test.go

    		MatchLabelExpressions: []api.TopologySelectorLabelRequirement{{
    			Key:    "failure-domain.beta.kubernetes.io/zone",
    			Values: []string{"zone1"},
    		}, {
    			Key:    "kubernetes.io/hostname",
    			Values: []string{"node1"},
    		}},
    	}, {
    		MatchLabelExpressions: []api.TopologySelectorLabelRequirement{{
    			Key:    "failure-domain.beta.kubernetes.io/zone",
    			Values: []string{"zone2"},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/nettest/nettest.go

    // the current platform configuration.
    func TestableAddress(network, address string) bool {
    	switch ss := strings.Split(network, ":"); ss[0] {
    	case "unix", "unixgram", "unixpacket":
    		// Abstract unix domain sockets, a Linux-ism.
    		if address[0] == '@' && runtime.GOOS != "linux" {
    			return false
    		}
    	}
    	return true
    }
    
    // NewLocalListener returns a listener which listens to a loopback IP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top