Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 596 for core_v1 (0.36 sec)

  1. pkg/config/analysis/analyzers/deployment/services.go

    var _ analysis.Analyzer = &ServiceAssociationAnalyzer{}
    
    type (
    	PortMap             map[int32]ProtocolMap
    	ProtocolMap         map[core_v1.Protocol]ServiceNames
    	ServiceNames        []string
    	ServiceSpecWithName struct {
    		Name string
    		Spec *core_v1.ServiceSpec
    	}
    )
    
    // targetPort port serviceName
    type targetPortMap map[string]map[int32]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/api__v1_openapi.json

                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "core_v1"
            ]
          }
        },
        "/api/v1/componentstatuses": {
          "get": {
            "description": "list objects of kind ComponentStatus",
            "operationId": "listCoreV1ComponentStatus",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "schemes": [
              "https"
            ],
            "tags": [
              "core_v1"
            ]
          }
        },
        "/api/v1/componentstatuses": {
          "get": {
            "consumes": [
              "*/*"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  4. api/openapi-spec/swagger.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "schemes": [
              "https"
            ],
            "tags": [
              "core_v1"
            ]
          }
        },
        "/api/v1/componentstatuses": {
          "get": {
            "consumes": [
              "*/*"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "schemes": [
              "https"
            ],
            "tags": [
              "core_v1"
            ]
          }
        },
        "/api/v1/componentstatuses": {
          "get": {
            "consumes": [
              "*/*"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  6. samples/extauthz/cmd/extauthz/main.go

    			OkResponse: &authv2.OkHttpResponse{
    				Headers: []*corev2.HeaderValueOption{
    					{
    						Header: &corev2.HeaderValue{
    							Key:   resultHeader,
    							Value: resultAllowed,
    						},
    					},
    					{
    						Header: &corev2.HeaderValue{
    							Key:   receivedHeader,
    							Value: request.GetAttributes().String(),
    						},
    					},
    					{
    						Header: &corev2.HeaderValue{
    							Key:   overrideHeader,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_v1.0.0.txt

    Russ Cox <******@****.***> 1531367739 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 143 bytes
    - Viewed (0)
  8. pkg/quota/v1/evaluator/core/pods_test.go

    			},
    			quotaScopes: []corev1.ResourceQuotaScope{
    				corev1.ResourceQuotaScopePriorityClass,
    				corev1.ResourceQuotaScopeBestEffort,
    			},
    			quotaScopeSelector: &corev1.ScopeSelector{
    				MatchExpressions: []corev1.ScopedResourceSelectorRequirement{
    					{
    						ScopeName: corev1.ResourceQuotaScopePriorityClass,
    						Operator:  corev1.ScopeSelectorOpIn,
    						Values:    []string{"high-priority"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    func ResourceNames(resources corev1.ResourceList) []corev1.ResourceName {
    	result := []corev1.ResourceName{}
    	for resourceName := range resources {
    		result = append(result, resourceName)
    	}
    	return result
    }
    
    // Contains returns true if the specified item is in the list of items
    func Contains(items []corev1.ResourceName, item corev1.ResourceName) bool {
    	for _, i := range items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe_test.go

    							{
    								Name:       "http",
    								Port:       80,
    								TargetPort: intstr.FromInt32(80),
    								Protocol:   corev1.ProtocolTCP,
    							},
    						},
    					},
    					Status: corev1.ServiceStatus{
    						LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{
    							{
    								IP: "2.2.2.2",
    							},
    						}},
    					},
    				},
    				&corev1.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top