Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 443 for exploded (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    If you use excludes, make sure that you do not utilise any code path requiring the excluded dependency by sufficient test coverage.
    ====
    
    Transitive dependencies can be excluded on the level of a declared dependency.
    Exclusions are spelled out as a key/value pair via the attributes `group` and/or `module` as shown in the example below.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            result.assertTasksExecuted(":a:one", ":a:two")
            fixture.assertProjectsConfigured(":", ":a")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "does not configure all projects when excluded task path is not qualified and is exact match for task in default project"() {
            createDirs("a", "a/child", "b", "b/child", "c")
            settingsFile << "include 'a', 'a:child', 'b', 'b:child', 'c'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/subst.go

    // incoming type. If a substitution took place, the result type is different
    // from the incoming type.
    //
    // If expanding is non-nil, it is the instance type currently being expanded.
    // One of expanding or ctxt must be non-nil.
    func (check *Checker) subst(pos syntax.Pos, typ Type, smap substMap, expanding *Named, ctxt *Context) Type {
    	assert(expanding != nil || ctxt != nil)
    
    	if smap.empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    		{"?exclude=bad", "ok", http.StatusOK, true},
    		{"?verbose=true&exclude=bad", fmt.Sprintf("[+]ping ok\n[+]bad excluded: ok\n%s check passed\n", name), http.StatusOK, true},
    		{"?verbose=true&exclude=dontexist", fmt.Sprintf("[+]ping ok\nwarn: some health checks cannot be excluded: no matches for \"dontexist\"\n%s check passed\n", name), http.StatusOK, false},
    		{"/ping", "ok", http.StatusOK, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                    @TaskAction
                    void explode() {
                        throw new Exception("I am the checked exception")
                    }
                }
    
                task explode(type: SomeTask) {
    
                }
            """
    
            expect:
            2.times {
                fails "explode"
                failure.assertHasCause "java.lang.Exception: I am the checked exception"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

            return includes;
        }
    
        public void setIncludes(@Nullable List<String> includes) {
            this.includes = includes;
        }
    
        /**
         * List of class names that should be excluded from analysis. Names can use wildcard (* and ?). Defaults to an empty list.
         */
        @Nullable
        @Optional
        @Input
        public List<String> getExcludes() {
            return excludes;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelWtpClasspathAttributesCrossVersionSpec.groovy

            then:
            classpath.size() == 2
            entryIsDeployed(classpath[0], '/')
            entryIsDeployed(classpath[1], '/')
        }
    
        def "Root wtp dependencies present in minusConfigurations are excluded from deployment"() {
            given:
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'war'
               apply plugin: 'eclipse-wtp'
               repositories { $localMaven }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    - Binary-only (bin)
    - Complete (all) with docs and sources
    
    We recommend downloading the bin file.
    
    **Step 2 - Unpack the distribution**
    
    Create a new directory `C:\Gradle` with **File Explorer**.
    
    Open a second **File Explorer** window and go to the directory where the Gradle distribution was downloaded. Double-click the ZIP archive to expose the content.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top