Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,832 for excluded (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				fmt.Fprintf(&individualCheckOutput, "[+]%s ok\n", check.Name())
    			}
    		}
    		if excluded.Len() > 0 {
    			fmt.Fprintf(&individualCheckOutput, "warn: some health checks cannot be excluded: no matches for %s\n", formatQuoted(excluded.List()...))
    			klog.V(6).Infof("cannot exclude some health checks, no health checks are installed matching %s",
    				formatQuoted(excluded.List()...))
    		}
    		// always be verbose on failure
    		if len(failedChecks) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeDetails.java

        }
    
        @Override
        public String getValue() {
            return value;
        }
    
        public boolean isExcluded() {
            return excluded;
        }
    
        @Override
        public void setValue(String value) {
            this.value = value;
        }
    
        @Override
        public void exclude() {
            excluded = true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def linkTarget1 = tmpDir.createDir("linkTarget1")
            linkTarget1.createFile("included/text.txt")
            linkTarget1.createFile("excluded/text.txt")
            linkTarget1.createFile("excluded/excluded.png")
            def linkTarget2 = tmpDir.createDir("linkTarget2")
            linkTarget2.createFile("included.txt")
            linkTarget2.createFile("excluded.png")
            def linkTarget3 = tmpDir.createFile("linkTarget3")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationExtensions.kt

    
    /**
     * Adds an exclude rule to exclude transitive dependencies for all dependencies of this configuration.
     * You can also add exclude rules per-dependency. See [ModuleDependency.exclude].
     *
     * @param group the optional group identifying the dependencies to be excluded.
     * @param module the optional module name identifying the dependencies to be excluded.
     * @return this
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top