Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,201 for verb (0.04 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            expect:
            def namingScheme = createNamingScheme(parentName, type, dimensions)
            namingScheme.getTaskName(verb, target) == taskName
    
            where:
            parentName | type   | dimensions     | verb       | target    | taskName
            null       | "type" | []             | null       | null      | "type"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BaseRemoteBuildCacheServiceHandle.java

            LOAD("Load", "from"),
            STORE("Store", "in");
    
            private final String verb;
            private final String capitalizedVerb;
            private final String preposition;
    
            Operation(String capitalizedVerb, String preposition) {
                this.capitalizedVerb = capitalizedVerb;
                this.verb = capitalizedVerb.toLowerCase(Locale.ROOT);
                this.preposition = preposition;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/apis/authorization/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_NonResourceAttributes_To_authorization_NonResourceAttributes(in *v1.NonResourceAttributes, out *authorization.NonResourceAttributes, s conversion.Scope) error {
    	out.Path = in.Path
    	out.Verb = in.Verb
    	return nil
    }
    
    // Convert_v1_NonResourceAttributes_To_authorization_NonResourceAttributes is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 31.2K bytes
    - Viewed (0)
  4. src/go/types/instantiate.go

    		return true // avoid follow-on errors
    	}
    	if p, _ := Vu.(*Pointer); p != nil && !isValid(under(p.base)) {
    		return true // avoid follow-on errors (see go.dev/issue/49541 for an example)
    	}
    
    	verb := "implement"
    	if constraint {
    		verb = "satisfy"
    	}
    
    	Ti, _ := Tu.(*Interface)
    	if Ti == nil {
    		if cause != nil {
    			var detail string
    			if isInterfacePtr(Tu) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/storageversion.go

    			return
    		}
    		// Allow non-resource requests
    		if !requestInfo.IsResourceRequest {
    			handler.ServeHTTP(w, req)
    			return
    		}
    		// Allow read requests
    		if requestInfo.Verb == "get" || requestInfo.Verb == "list" || requestInfo.Verb == "watch" {
    			handler.ServeHTTP(w, req)
    			return
    		}
    		// Allow writes to the storage version API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/apis/authorization/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_NonResourceAttributes_To_authorization_NonResourceAttributes(in *v1beta1.NonResourceAttributes, out *authorization.NonResourceAttributes, s conversion.Scope) error {
    	out.Path = in.Path
    	out.Verb = in.Verb
    	return nil
    }
    
    // Convert_v1beta1_NonResourceAttributes_To_authorization_NonResourceAttributes is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 32.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    			IsResourceRequest: true,
    			Verb:              verbs[coord%nv],
    			APIGroup:          apiGroups[coord/nv%ng],
    			Resource:          resources[coord/nv/ng%nr],
    			Namespace:         namespaces[coord/nv/ng/nr]})
    	}
    	return ans
    }
    
    func genNRRIs(rng *rand.Rand, m int, verbs, urls []string) []*request.RequestInfo {
    	nv := len(verbs)
    	nu := len(urls)
    	coords := chooseInts(rng, nv*nu, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		},
    		ResourceRequest: true,
    		Namespace:       "kittensandponies",
    		Verb:            "get",
    	}
    	bobAttr := authorizer.AttributesRecord{
    		User: &user.DefaultInfo{
    			Name: "bob",
    		},
    		ResourceRequest: false,
    		Namespace:       "kittensandponies",
    		Verb:            "get",
    	}
    	alice2Attr := authorizer.AttributesRecord{
    		User: &user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

    import java.io.File;
    import java.util.Collection;
    import java.util.List;
    
    public interface BinaryNamingScheme {
        String getBinaryName();
    
        String getTaskName(@Nullable String verb);
    
        String getTaskName(@Nullable String verb, @Nullable String target);
    
        /**
         * Returns a directory that can be used for outputs for this binary.
         */
        File getOutputDirectory(File baseDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinaryTasksCollection.java

        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb);
    
        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb, String object);
    
        /**
         * The task that can be used to assemble this binary.
         */
        Task getBuild();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top