Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for byNamespace (0.3 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
      // The supported types are "ByUser" and "ByNamespace".
      // Required.
      optional string type = 1;
    }
    
    // FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
      // The supported types are "ByUser" and "ByNamespace".
      // Required.
      optional string type = 1;
    }
    
    // FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/resource_quota_controller_test.go

    	return nil, fmt.Errorf("error listing")
    }
    func (errorLister) Get(name string) (runtime.Object, error) {
    	return nil, fmt.Errorf("error getting")
    }
    func (errorLister) ByNamespace(namespace string) cache.GenericNamespaceLister {
    	return errorLister{}
    }
    
    type quotaController struct {
    	*Controller
    	stop chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. pkg/kubelet/config/http_test.go

    			pods: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{
    					Kind:       "Pod",
    					APIVersion: "",
    				},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "foo",
    					UID:       "111",
    					Namespace: "mynamespace",
    				},
    				Spec: v1.PodSpec{
    					NodeName:        string(nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    			Name:      "sidecar-scope-with-workloadselector-specific-dr-match",
    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app2"},
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs19 = &config.Config{
    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-workloadselector-specific-dr-no-match",
    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app5"},
    		},
    		Spec: &networking.Sidecar{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. pkg/kubelet/config/common_test.go

    	pod := &v1.Pod{
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: "",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "test",
    			UID:       "12345",
    			Namespace: "mynamespace",
    		},
    		Spec: v1.PodSpec{
    			RestartPolicy:                 v1.RestartPolicyAlways,
    			DNSPolicy:                     v1.DNSClusterFirst,
    			TerminationGracePeriodSeconds: &grace,
    			Containers: []v1.Container{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/registry/admissionregistration/validatingadmissionpolicybinding/strategy_test.go

    			},
    			Spec: admissionregistration.ValidatingAdmissionPolicyBindingSpec{
    				PolicyName: "replicalimit-policy.example.com",
    				ParamRef: &admissionregistration.ParamRef{
    					Namespace: "mynamespace",
    					Selector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{
    							"label": "value",
    						},
    					},
    					ParameterNotFoundAction: &denyAction,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/schema/validation_test.go

    func (fakeOrigin) FriendlyName() string          { return "myFriendlyName" }
    func (fakeOrigin) Comparator() string            { return "myFriendlyName" }
    func (fakeOrigin) Namespace() resource.Namespace { return "myNamespace" }
    func (fakeOrigin) Reference() resource.Reference { return fakeReference{} }
    func (fakeOrigin) FieldMap() map[string]int      { return make(map[string]int) }
    func (fakeOrigin) ClusterName() cluster.ID {
    	return "cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tfcompile_main.cc

        "header file that gives access to the functionality in the object file.\n"
        "A typical invocation looks like this:\n"
        "\n"
        "   $ tfcompile --graph=mygraph.pb --config=myfile.pbtxt "
        "--cpp_class=\"mynamespace::MyComputation\"\n"
        "\n";
    
    }  // end namespace tfcompile
    }  // end namespace tensorflow
    
    int main(int argc, char** argv) {
      tensorflow::tfcompile::MainFlags flags;
    #ifndef __s390x__
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top