Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 256 for groupPing (0.41 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/apimachinery/pkg/api/meta/multirestmapper_test.go

    		},
    		{
    			name:      "ignore not found with kind not exist",
    			mapper:    MultiRESTMapper{fixedRESTMapper{err: &NoKindMatchError{GroupKind: schema.GroupKind{Kind: "IGNORE_THIS"}}}},
    			groupKind: schema.GroupKind{Kind: "Foo"},
    			versions:  nil,
    			result:    nil,
    			err:       &NoKindMatchError{GroupKind: schema.GroupKind{Kind: "Foo"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 01:49:02 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/crd_finder.go

    	"k8s.io/client-go/dynamic"
    )
    
    // CRDGetter is a function that can download the list of GVK for all
    // CRDs.
    type CRDGetter func() ([]schema.GroupKind, error)
    
    func CRDFromDynamic(client dynamic.Interface) CRDGetter {
    	return func() ([]schema.GroupKind, error) {
    		list, err := client.Resource(schema.GroupVersionResource{
    			Group:    "apiextensions.k8s.io",
    			Version:  "v1",
    			Resource: "customresourcedefinitions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 14:05:43 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. plugin/pkg/auth/authorizer/rbac/subject_locator_test.go

    					[]rbacv1.Subject{
    						{Kind: rbacv1.GroupKind, APIGroup: rbacv1.GroupName, Name: user.SystemPrivilegedGroup},
    						{Kind: rbacv1.UserKind, APIGroup: rbacv1.GroupName, Name: "super-admin"},
    						{Kind: rbacv1.GroupKind, APIGroup: rbacv1.GroupName, Name: "super-admins"},
    						{Kind: rbacv1.UserKind, APIGroup: rbacv1.GroupName, Name: "admin"},
    						{Kind: rbacv1.GroupKind, APIGroup: rbacv1.GroupName, Name: "admins"},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  10. 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)
Back to top