Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,536 for excluded (0.5 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4LoggingOutputCaptureIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            executer.withTestConsoleAttached()
            succeeds("test")
    
            and: "all output is included/excluded in the xml report as configured"
            def junitResult = new JUnitXmlTestExecutionResult(testDirectory)
            if (standardOutIncluded) {
                assert junitResult.getSuiteStandardOutput("OkTest").isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageLoggingOutputCaptureIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            executer.withTestConsoleAttached()
            succeeds("test")
    
            and: "all output is included/excluded in the xml report as configured"
            def junitResult = new JUnitXmlTestExecutionResult(testDirectory)
            if (standardOutIncluded) {
                assert junitResult.getSuiteStandardOutput("OkTest").isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/modfile.go

    	for _, r := range modFile.Require {
    		i.require[r.Mod] = requireMeta{indirect: r.Indirect}
    	}
    
    	i.replace = toReplaceMap(modFile.Replace)
    
    	i.exclude = make(map[module.Version]bool, len(modFile.Exclude))
    	for _, x := range modFile.Exclude {
    		i.exclude[x.Mod] = true
    	}
    
    	return i
    }
    
    // modFileIsDirty reports whether the go.mod file differs meaningfully
    // from what was indexed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/ApiClassExtractor.java

         * specification, then package-private classes are included in the public API. If the
         * list of exported packages is non-empty (i.e. the library has declared an
         * {@code api {...}} specification, then package-private classes are excluded.</p>
         */
        public Optional<byte[]> extractApiClassFrom(ClassReader originalClassReader) {
            if (!shouldExtractApiClassFrom(originalClassReader)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>If not all classes on the classpath should be covered, {@link #ignoreClasses} can be used to
     * exclude certain classes. As a special case, classes with an underscore in the name (like {@code
     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/webhook/client_test.go

    		return true
    	}
    	for _, p := range nextProtos {
    		if p == http2.NextProtoTLS {
    			// the transport explicitly allowed http/2
    			return true
    		}
    	}
    	// the transport explicitly set NextProtos and excluded http/2
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 09:09:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java

         *
         * @return The dependency graph or {@code null} if not available.
         */
        DependencyNode getDependencyGraph();
    
        /**
         * Gets the transitive dependencies of the project that were not excluded by
         * {@link DependencyResolutionRequest#getResolutionFilter()}. This list is a union of the results from
         * {@link #getResolvedDependencies()} and {@link #getUnresolvedDependencies()}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. common/config/.golangci.yml

          - G404
    issues:
      # List of regexps of issue texts to exclude, empty list by default.
      # But independently from this option we use default exclude patterns,
      # it can be disabled by `exclude-use-default: false`. To list all
      # excluded by default patterns execute `golangci-lint run --help`
      exclude:
        - composite literal uses unkeyed fields
      # Which dirs to exclude: issues from them won't be reported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            when: //transitive dependency is excluded
            file("impl/build.gradle") << "configurations.implementation.exclude module: 'hamcrest-core' \n"
            run("impl:${language.compileTaskName}")
    
            then:
            file("impl/classpath.txt").text == wrapClassDirs("mockito-core-1.9.5.jar, junit-4.13.jar, objenesis-1.0.jar")
    
            when: //direct dependency is excluded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	// understand nodes). For services that use externalTrafficPolicy=Local, this may mean that
    	// any backends on excluded nodes are not reachable by those external load-balancers.
    	// Implementations of this exclusion may vary based on provider.
    	LabelNodeExcludeBalancers = "node.kubernetes.io/exclude-from-external-load-balancers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top