Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for byNamespace (0.36 sec)

  1. pilot/pkg/model/sidecar.go

    // If there are more than one, pick the first alphabetically.
    func pickFirstVisibleNamespace(ps *PushContext, byNamespace map[string]*Service, configNamespace string) string {
    	nss := make([]string, 0, len(byNamespace))
    	for ns := range byNamespace {
    		if ps.IsServiceVisible(byNamespace[ns], configNamespace) {
    			nss = append(nss, ns)
    		}
    	}
    	if len(nss) > 0 {
    		sort.Strings(nss)
    		return nss[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// is dedicated to a tenant.
    	FlowDistinguisherMethodByNamespaceType FlowDistinguisherMethodType = "ByNamespace"
    )
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    type FlowDistinguisherMethod struct {
    	// `type` is the type of flow distinguisher method
    	// The supported types are "ByUser" and "ByNamespace".
    	// Required.
    	Type FlowDistinguisherMethodType `json:"type" protobuf:"bytes,1,opt,name=type"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    			ParentRef: &networking.ParentReference{
    				Group:     "mygroup",
    				Resource:  "myresource",
    				Namespace: "mynamespace",
    				Name:      "myname",
    			},
    		},
    	}
    	// Columns: Name, ParentRef, Age
    	expected := []metav1.TableRow{{Cells: []interface{}{"192.168.2.2", "myresource.mygroup/mynamespace/myname", "10y"}}}
    
    	rows, err := printIPAddress(&ip, printers.GenerateOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    				Properties: map[string]spec.Schema{
    					"type": {
    						SchemaProps: spec.SchemaProps{
    							Description: "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    				},
    				Required: []string{"type"},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

          "properties": {
            "type": {
              "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        },
        "io.k8s.api.flowcontrol.v1.FlowSchema": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top