Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 887 for excluded (0.15 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/ivy/IvyDescriptorDependencyTest.groovy

            'false'         | false
        }
    
        def "can check if excludes are defined"() {
            given:
            IvyDescriptorDependency ivyDescriptorDependency = new IvyDescriptorDependency(exclusions: givenExclusions)
    
            when:
            boolean excludes = ivyDescriptorDependency.hasExcludes()
    
            then:
            excludes == result
    
            where:
            givenExclusions                          | result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

            Set<String> excludesSet = patternSet.getExcludesView();
            String excludes = excludesSet.isEmpty() ? "" : String.format(" exclude %s", GUtil.toString(excludesSet));
            return String.format("directory '%s'%s%s", dir, includes, excludes);
        }
    
        @Override
        public String toString() {
            return getDisplayName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/testing/testing.go

    //
    // To write a new test suite, create a file that
    // contains the TestXxx functions as described here,
    // and give that file a name ending in "_test.go".
    // The file will be excluded from regular
    // package builds but will be included when the "go test" command is run.
    //
    // The test file can be in the same package as the one being tested,
    // or in a corresponding package with the suffix "_test".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                }
    
                task showSources {
                    def sources = fileTree(projectDir) {
                        exclude "build"
                        exclude ".gradle"
                        exclude "build.gradle"
                        exclude "settings.gradle"
                        exclude "operations-log.txt"
                    }
                    inputs.files(sources)
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                      that Felix should exclude when monitoring for host endpoints. The
                      default value ensures that Felix ignores Kubernetes'' IPVS dummy
                      interface, which is used internally by kube-proxy. If you want to
                      exclude multiple interface names using a single value, the list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/outbound-owner-groups-exclude.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

                            break;
                        case "version":
                            version = consumeVersion(reader);
                            break;
                        case "excludes":
                            excludes = consumeExcludes(reader);
                            break;
                        case "reason":
                            reason = reader.nextString();
                            break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. cni/pkg/plugin/testdata/include-exclude-ip.txt.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. fess-crawler/pom.xml

    			</plugin>
    			<plugin>
    				<artifactId>maven-source-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<artifactId>maven-surefire-plugin</artifactId>
    				<configuration>
    					<excludes>
    						<exclude>**/JodExtractorTest.java</exclude>
    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.jacoco</groupId>
    				<artifactId>jacoco-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top