Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 209 for Enumerated (0.17 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/deps/DependentsSet.java

    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * Provides a set of classes that depend on some other class.
     * If {@link #isDependencyToAll()} returns true, then the dependent classes can't be enumerated.
     * In this case a description of the problem is available via {@link #getDescription()}.
     */
    public abstract class DependentsSet {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/plugins.go

    	// by dynamic linking or other "magic".  Plugins will be analyzed and
    	// initialized later.
    
    	// Each plugin can make use of VolumeConfig.  The single arg to this func contains *all* enumerated
    	// options meant to configure volume plugins.  From that single config, create an instance of volume.VolumeConfig
    	// for a specific plugin and pass that instance to the plugin's ProbeVolumePlugins(config) func.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/config.go

    // It returns the loaded admission configuration if the input file aligns with the required syntax.
    // If it does not align with the provided syntax, it returns a default configuration for the enumerated
    // set of pluginNames whose config location references the specified configFilePath.
    // It does this to preserve backward compatibility when admission control files were opaque.
    // It returns an error if the file did not exist.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. pkg/apis/rbac/types.go

    	Verbs []string
    
    	// APIGroups is the name of the APIGroup that contains the resources.
    	// If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
    	APIGroups []string
    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. pkg/scheduler/apis/config/types_pluginargs.go

    	// unspecified.
    	MinCandidateNodesPercentage int32
    	// MinCandidateNodesAbsolute is the absolute minimum number of candidates to
    	// shortlist. The likely number of candidates enumerated for dry running
    	// preemption is given by the formula:
    	// numCandidates = max(numNodes * minCandidateNodesPercentage, minCandidateNodesAbsolute)
    	// We say "likely" because there are other factors such as PDB violations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/rbac/v1/generated.proto

      repeated string verbs = 1;
    
      // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
      // the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
      // +optional
      repeated string apiGroups = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. cmd/api-response.go

    		}
    	}
    
    	for _, k := range toRemove {
    		delete(m, k)
    		delete(m, strings.ToLower(k))
    	}
    
    	return m
    }
    
    // generates an ListBucketVersions response for the said bucket with other enumerated options.
    func generateListVersionsResponse(ctx context.Context, bucket, prefix, marker, versionIDMarker, delimiter, encodingType string, maxKeys int, resp ListObjectVersionsInfo, metadata metaCheckFn) ListVersionsResponse {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1/generated.proto

      // +listType=atomic
      repeated string verbs = 1;
    
      // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
      // the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
      // +optional
      // +listType=atomic
      repeated string apiGroups = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/types_swagger_doc_generated.go

    	"apiGroups":       "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"\" represents the core API group and \"*\" represents all API groups.",
    	"resources":       "Resources is a list of resources this rule applies to. '*' represents all resources.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    td"> --> <!-- The following conventions apply to all J2EE deployment descriptor elements unless indicated otherwise. - In elements that contain PCDATA, leading and trailing whitespace in the data may be ignored. - In elements whose value is an "enumerated type", the value is case sensitive. - In elements that specify a pathname to a file within the same JAR file, relative filenames (i.e., those not starting with "/") are considered relative to the root of the JAR file's namespace. Absolute filenames...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top