Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 401 for getPerm (0.39 sec)

  1. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    		t.Fatalf("Expected at least %d actions, got %d", len(expected), len(actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    		}
    		resource := expected[i][1]
    		if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtFunctionLikeSignature.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaValueParameterSymbol
    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    
    /**
     * A signature of a function-like symbol. This includes functions, getters, setters, lambdas, etc.
     */
    public abstract class KaFunctionLikeSignature<out S : KaFunctionLikeSymbol> : KaCallableSignature<S>() {
        /**
         * The use-site-substituted value parameters.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1010 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    You can use an interface or abstract class declaring the getters and Gradle will generate the implementation.
    All getters need to have proper input annotations, see <<incremental_build.adoc#table:incremental_build_annotations,incremental build annotations>> table.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

        protected QueryBuilder convertFuzzyQuery(final QueryContext context, final FuzzyQuery fuzzyQuery, final float boost) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final Term term = fuzzyQuery.getTerm();
            final String field = getSearchField(context.getDefaultField(), term.field());
    
            if (Constants.DEFAULT_FIELD.equals(field)) {
                final String text = term.text();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkParameters.java

     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    /**
     * Marker interface for parameter objects to {@link WorkAction}s.
     *
     * <p>
     *     Parameter types should be interfaces, only declaring getters for {@link org.gradle.api.provider.Property}-like objects.
     *     Example:
     * </p>
     * <pre class='autoTested'>
     * public interface MyParameters extends WorkParameters {
     *     Property&lt;String&gt; getStringParameter();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/public/function_metadata.h

    // a valid function path (for TF2-based ConcreteFunctions), and
    // the types + number of inputs and outputs.
    class FunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
     private:
      friend class ConcreteFunction;
      static FunctionMetadata* wrap(TF_FunctionMetadata* p) {
        return reinterpret_cast<FunctionMetadata*>(p);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    limitations under the License.
    */
    
    package common
    
    // Schema is the adapted type for an OpenAPI schema that CEL uses.
    // This schema does not cover all OpenAPI fields but only these CEL requires
    // are exposed as getters.
    type Schema interface {
    	// Type returns the OpenAPI type.
    	// Multiple types are not supported. It should return
    	// empty string if no type is specified.
    	Type() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ContainerElementServiceInjectionIntegrationTest.groovy

            failure.assertHasCause("Unable to determine constructor argument #2: missing parameter of type Unknown, or no service of type Unknown")
        }
    
        def "container element can receive services through getter method"() {
            buildFile """
                class Bean {
                    String name
    
                    Bean(String name) {
                        println(factory != null ? "got it" : "NOT IT")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    			clusterRoles: []*rbacv1.ClusterRole{
    				newClusterRole("non-resource-url-getter", newRule("get", "", "", "/apis")),
    				newClusterRole("non-resource-url", newRule("*", "", "", "/apis")),
    				newClusterRole("non-resource-url-prefix", newRule("get", "", "", "/apis/*")),
    			},
    			clusterRoleBindings: []*rbacv1.ClusterRoleBinding{
    				newClusterRoleBinding("non-resource-url-getter", "User:foo", "Group:bar"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/mutableManagedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.tasks.TaskAction;
    
    import java.net.URI;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Input
        public abstract Property<URI> getUri(); // abstract getter of type Property<T>
    
        @TaskAction
        void run() {
            System.out.println("Downloading " + getUri().get()); // Use the `uri` property
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 488 bytes
    - Viewed (0)
Back to top