Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,050 for isnumber (0.08 sec)

  1. pkg/config/analysis/analyzers/testdata/gateway-secrets-validation.yaml

    kind: Gateway
    metadata:
      name: defaultgateway-invalid-keys
    spec:
      selector:
        istio: ingressgateway # use istio default ingress gateway, so we expect the credential in istio-system
      servers:
        - port:
            number: 443
            name: https
            protocol: HTTPS
          tls:
            mode: SIMPLE
            credentialName: "invalid-key" # wrong key names, should have one error
          hosts:
            - "httpbin.example.com"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/AbstractJavaPropertyRules.java

        @RuleInput
        protected abstract int getNumber();
        protected abstract void setNumber(int value);
    
        @Model
        String thing(int number) {
            return String.valueOf(number);
        }
    
        @Mutate
        protected void change(List<Number> numbers, String string) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/dev_dragonfly.go

    package unix
    
    // Major returns the major component of a DragonFlyBSD device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 8) & 0xff)
    }
    
    // Minor returns the minor component of a DragonFlyBSD device number.
    func Minor(dev uint64) uint32 {
    	return uint32(dev & 0xffff00ff)
    }
    
    // Mkdev returns a DragonFlyBSD device number generated from the given major and
    // minor components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1K bytes
    - Viewed (0)
  4. pkg/kube/apimirror/probe.go

    type HTTPGetAction struct {
    	// Path to access on the HTTP server.
    	// +optional
    	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
    	// Name or number of the port to access on the container.
    	// Number must be in the range 1 to 65535.
    	// Name must be an IANA_SVC_NAME.
    	Port IntOrString `json:"port" protobuf:"bytes,2,opt,name=port"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    	"disruptionsAllowed": "Number of pod disruptions that are currently allowed.",
    	"currentHealthy":     "current number of healthy pods",
    	"desiredHealthy":     "minimum desired number of healthy pods",
    	"expectedPods":       "total number of pods counted by this disruption budget",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    	"disruptionsAllowed": "Number of pod disruptions that are currently allowed.",
    	"currentHealthy":     "current number of healthy pods",
    	"desiredHealthy":     "minimum desired number of healthy pods",
    	"expectedPods":       "total number of pods counted by this disruption budget",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/policy/v1/generated.proto

      // Large number of entries in the map may indicate problems with pod deletions.
      // +optional
      map<string, k8s.io.apimachinery.pkg.apis.meta.v1.Time> disruptedPods = 2;
    
      // Number of pod disruptions that are currently allowed.
      optional int32 disruptionsAllowed = 3;
    
      // current number of healthy pods
      optional int32 currentHealthy = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/metrics/metrics.go

    	totalVolumesDesc = metrics.NewDesc(
    		volumeManagerTotalVolumes,
    		"Number of volumes in Volume Manager",
    		[]string{"plugin_name", "state"},
    		nil,
    		metrics.ALPHA, "",
    	)
    
    	ReconstructVolumeOperationsTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Name:           reconstructVolumeOperationsTotal,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 06 16:48:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/metrics/metrics.go

    var (
    	// VolumeBindingRequestSchedulerBinderCache tracks the number of volume binder cache operations.
    	VolumeBindingRequestSchedulerBinderCache = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      VolumeSchedulerSubsystem,
    			Name:           "binder_cache_requests_total",
    			Help:           "Total number for request volume binding cache",
    			StabilityLevel: metrics.ALPHA,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 23 12:18:16 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/alias.yaml.golden

      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/http.default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top