Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 401 for getPerm (0.24 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

            obj.invokeMethod("doSomething", "arg") == "arg"
    
            def newMetaClass = new MetaClassImpl(cl)
            newMetaClass.initialize()
            obj.setMetaClass(newMetaClass) == null
        }
    
        def "add getters for String constants"() {
            given:
            def className = "org.gradle.api.plugins.JavaPluginConvention"
    
            def original = compileJavaToDir(className, """
                package org.gradle.api.plugins;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    // may be used to deserialize an options object to pass to the getter.
    type getterFunc func(ctx context.Context, name string, req *http.Request) (runtime.Object, error)
    
    // getResourceHandler is an HTTP handler function for get requests. It delegates to the
    // passed-in getterFunc to perform the actual get.
    func getResourceHandler(scope *RequestScope, getter getterFunc) http.HandlerFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

     * UTF-8, ISO-8859-1, etc).  Other encodings (e.g. UTF-16) will be treated as binary files
     * and will not be subject to line ending normalization.
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * This annotation can be applied to the following input property types:
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. pkg/registry/rbac/role/registry.go

    type Registry interface {
    	GetRole(ctx context.Context, name string, options *metav1.GetOptions) (*rbacv1.Role, error)
    }
    
    // storage puts strong typing around storage calls
    type storage struct {
    	rest.Getter
    }
    
    // NewRegistry returns a new Registry interface for the given Storage. Any mismatched
    // types will panic.
    func NewRegistry(s rest.StandardStorage) Registry {
    	return &storage{s}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 02:36:35 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

         *
         * When a given method cannot be found on the source object for a view, the mix-in object is searched for a compatible method.
         * For a getter method, the mix-in may also provide a method that takes the view as a parameter.
         *
         * @return this
         */
        ViewBuilder<T> mixInTo(Class<?> targetType, Object mixIn);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

                    if (defaultField.equals(splitField.cur)) {
                        final PhraseQuery.Builder builder = new PhraseQuery.Builder();
                        builder.add(termQuery.getTerm());
                        return builder.build();
                    }
                }
                return query;
            }
    
            protected Pair<String, String> splitField(String defaultField, String field) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/DefaultStructBindingsStore.java

                if ((isDefaultInterfaceMethod(declaredMethod) && !isAcceptable(declaredMethod)) && PropertyAccessorType.of(declaredMethod) == null) {
                    problems.add(declaredMethod, "Default interface methods are only supported for getters and setters.");
                }
            }
        }
    
        // Groovy3 introduced default methods on GroovyObject that the model objects inhert, skip these
        private static boolean isAcceptable(Method method) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  8. operator/cmd/mesh/operator_test.go

    				"list":  true,
    				"watch": true,
    			}
    
    			actions := extendedClient.Kube().(*fake.Clientset).Actions()
    			for _, action := range actions {
    				if v := readActions[action.GetVerb()]; !v {
    					t.Fatalf("unexpected action: %+v, expected %s", action.GetVerb(), "get")
    				}
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. plugin/pkg/admission/namespace/exists/admission_test.go

    	if err == nil {
    		actions := ""
    		for _, action := range mockClient.Actions() {
    			actions = actions + action.GetVerb() + ":" + action.GetResource().Resource + ":" + action.GetSubresource() + ", "
    		}
    		t.Errorf("expected error returned from admission handler: %v", actions)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/taint_eviction_test.go

    	err := wait.Poll(10*time.Millisecond, 5*time.Second, func() (bool, error) {
    		for _, action := range fakeClientset.Actions() {
    			if action.GetVerb() == "patch" && action.GetResource().Resource == "pods" {
    				podPatched = true
    			}
    			if action.GetVerb() == "delete" && action.GetResource().Resource == "pods" {
    				podDeleted = true
    			}
    		}
    		return podPatched == expectPatch && podDeleted == expectDelete, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top