Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestScope (0.11 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/AbstractScopeArtifactFilter.java

     *
     */
    abstract class AbstractScopeArtifactFilter implements ArtifactFilter {
    
        private boolean compileScope;
    
        private boolean runtimeScope;
    
        private boolean testScope;
    
        private boolean providedScope;
    
        private boolean systemScope;
    
        void addScopeInternal(String scope) {
            if (Artifact.SCOPE_COMPILE.equals(scope)) {
                systemScope = true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    }
    
    type RESTScopeName string
    
    const (
    	RESTScopeNameNamespace RESTScopeName = "namespace"
    	RESTScopeNameRoot      RESTScopeName = "root"
    )
    
    // RESTScope contains the information needed to deal with REST resources that are in a resource hierarchy
    type RESTScope interface {
    	// Name of the scope
    	Name() RESTScopeName
    }
    
    // RESTMapping contains the information needed to deal with objects of a specific
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top