Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 798 for excluded (0.16 sec)

  1. hack/verify-flags/excluded-flags.txt

    Vadim Rutkovsky <******@****.***> 1671109648 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 11 09:42:14 UTC 2023
    - 379 bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) Primaries(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsPrimary()
    	}, exclude(excluded...))
    }
    
    // Exclude returns all clusters not given as input.
    func (c Clusters) Exclude(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return true
    	}, exclude(excluded...))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/DefaultTaskSelectorTest.groovy

            0 * _
    
            and:
            !filter.isSatisfiedBy(excluded)
            filter.isSatisfiedBy(notExcluded)
        }
    
        def "exclude filter configures only the default project when exact match on task name found when subprojects included"() {
            def excluded = Stub(Task)
            _ * excluded.name >> "b"
            _ * excluded.project >> projectModel1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         * Sets list of elements that should be excluded from check.
         *
         * @param excludes Exclusions
         */
        void setExcludes(List<String> excludes);
    
        /**
         * List of elements that should be excluded from check. Names can use wildcards (* and ?).
         * If left empty, no elements will be excluded. Defaults to an empty list.
         */
        @Input
        List<String> getExcludes();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_empty_err.txt

    -- $WORK/go.mod --
    module example.com/m
    
    go 1.14
    
    -- $WORK/empty/empty.txt --
    -- $WORK/exclude/exclude.go --
    // +build exclude
    
    package exclude
    -- $WORK/testonly/testonly_test.go --
    package testonly_test
    -- $WORK/excluded-stdout --
    package ./excluded: cannot find package "." in:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 922 bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FilteredMinimalFileTreeTest.groovy

                nestedVisitor.visitDir(included)
                nestedVisitor.visitDir(excluded)
            }
            1 * visitor.visitDir(included)
            0 * _
        }
    
        def "ignores file that is not included"() {
            def spec = Mock(Spec)
            def included = Stub(FileVisitDetails)
            def excluded = Stub(FileVisitDetails)
            def visitor = Mock(FileVisitor)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/port_range_test.go

    			if f.String() != tc.expected {
    				t.Errorf("expected %q, got %q", tc.expected, f.String())
    			}
    			if tc.included >= 0 && !pr.Contains(tc.included) {
    				t.Errorf("expected %q to include %d", f.String(), tc.included)
    			}
    			if tc.excluded >= 0 && pr.Contains(tc.excluded) {
    				t.Errorf("expected %q to exclude %d", f.String(), tc.excluded)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/admission/exclusion/resources.go

    }
    
    // Included returns a copy of the list of resources that the expression-based admission controllers
    // should intercept.
    func Included() []schema.GroupResource {
    	return slices.Clone(included)
    }
    
    // Excluded returns a copy of the list of resources that the expression-based admission controllers
    // should ignore.
    func Excluded() []schema.GroupResource {
    	return slices.Clone(excluded)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ExcludeMetadata.java

         */
        ModuleIdentifier getModuleId();
    
        /**
         * The attributes of the artifact to be excluded. A '*' value for any attribute indicates a wildcard match.
         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
         * @return The IvyArtifactName to exclude, or `null` if no artifacts are excluded.
         */
        @Nullable
        IvyArtifactName getArtifact();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

            project.dependencies.add('excluded', project.layout.files('lib/guava.jar'))
            module.scopes.TEST.minus << project.configurations.getByName('excluded')
            def result = dependenciesProvider.provide(module)
    
            then:
            result.size() == 0
        }
    
        def "dependency is excluded if added to any minus configuration"() {
            applyPluginToProjects()
            project.apply(plugin: 'java')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top