Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for groupPing (0.31 sec)

  1. platforms/documentation/docs/src/snippets/tasks/addRules/tests/taskRuleDependsOn.sample.conf

    executable: gradle
    args: groupPing
    flags: --quiet
    expected-output-file: taskRuleDependsOn.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 124 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/addRules/groovy/build.gradle

            task(taskName) {
                doLast {
                    println "Pinging: " + (taskName - 'ping')
                }
            }
        }
    }
    // end::task-rule[]
    
    tasks.register('groupPing') {
        dependsOn 'pingServer1', 'pingServer2'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 376 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/addRules/kotlin/build.gradle.kts

            task(taskName) {
                doLast {
                    println("Pinging: " + (taskName.replace("ping", "")))
                }
            }
        }
    }
    // end::task-rule[]
    
    tasks.register("groupPing") {
        dependsOn("pingServer1", "pingServer2")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  4. pkg/apis/rbac/types.go

    	Kind string
    	// Name is the name of resource being referenced
    	Name string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    type Role struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ObjectMeta
    
    	// Rules holds all the PolicyRules for this Role
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier_test.go

    	tests := map[string]struct {
    		crds             []schema.GroupKind      // CRDFinder returns these CRD's
    		gvk              schema.GroupVersionKind // GVK whose OpenAPI spec is checked
    		queryParam       VerifiableQueryParam    // Usually "fieldValidation"
    		expectedSupports bool
    	}{
    		"Field validation query param is supported for batch/v1/Job, primary verifier": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    				Group:   "batch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 18:30:16 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    }
    
    // String converts mask to string
    func (s *bitMask) String() string {
    	grouping := 2
    	for shift := 64 - grouping; shift > 0; shift -= grouping {
    		if *s > (1 << uint(shift)) {
    			return fmt.Sprintf("%0"+strconv.Itoa(shift+grouping)+"b", *s)
    		}
    	}
    	return fmt.Sprintf("%0"+strconv.Itoa(grouping)+"b", *s)
    }
    
    // Count counts number of bits in mask set to one
    func (s *bitMask) Count() int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/crd_finder_test.go

    	found, err := finder.HasCRD(schema.GroupKind{Group: "", Kind: "Pod"})
    	if found {
    		t.Fatalf("Found the CRD with non-working getter function")
    	}
    	if err == nil {
    		t.Fatalf("Error in getter should be reported")
    	}
    }
    
    func TestCRDFinder(t *testing.T) {
    	getter := func() ([]schema.GroupKind, error) {
    		return []schema.GroupKind{
    			{
    				Group: "crd.com",
    				Kind:  "MyCRD",
    			},
    			{
    				Group: "crd.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/meta/errors.go

    	for _, v := range e.SearchedVersions {
    		searchedVersions.Insert(schema.GroupVersion{Group: e.GroupKind.Group, Version: v}.String())
    	}
    
    	switch len(searchedVersions) {
    	case 0:
    		return fmt.Sprintf("no matches for kind %q in group %q", e.GroupKind.Kind, e.GroupKind.Group)
    	case 1:
    		return fmt.Sprintf("no matches for kind %q in version %q", e.GroupKind.Kind, searchedVersions.List()[0])
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 22:50:51 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    	tests := map[string]struct {
    		crds             []schema.GroupKind      // CRDFinder returns these CRD's
    		gvk              schema.GroupVersionKind // GVK whose OpenAPI V3 spec is checked
    		queryParam       VerifiableQueryParam    // Usually "fieldValidation"
    		expectedSupports bool
    	}{
    		"Field validation query param is supported for batch/v1/Job": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    				Group:   "batch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. pkg/registry/rbac/validation/rule_test.go

    					{Kind: rbacv1.UserKind, Name: "foobar"},
    					{Kind: rbacv1.GroupKind, Name: "group1"},
    				},
    				RoleRef: rbacv1.RoleRef{APIGroup: rbacv1.GroupName, Kind: "Role", Name: "readthings"},
    			},
    		},
    		clusterRoleBindings: []*rbacv1.ClusterRoleBinding{
    			{
    				Subjects: []rbacv1.Subject{
    					{Kind: rbacv1.UserKind, Name: "admin"},
    					{Kind: rbacv1.GroupKind, Name: "admin"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top