Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,135 for tcRange (0.16 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SummarizingChangeContainer.java

            public ChangeDetectingVisitor(ChangeVisitor delegate) {
                this.delegate = delegate;
            }
    
            @Override
            public boolean visitChange(Change change) {
                changesDetected = true;
                return delegate.visitChange(change);
            }
    
            public boolean isChangesDetected() {
                return changesDetected;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         */
        Configuration dependencyScopeUnlocked(String name);
    
        /**
         * Creates a dependency scope configuration which can change role and executes the provided
         * {@code action} against the configuration.
         */
        Configuration dependencyScopeUnlocked(String name, Action<? super Configuration> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. releasenotes/notes/25818.yaml

    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a security fix.
    # - feature -- Used to specify a new feature that has been added.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedDependencyResolutionIntegrationTest.groovy

            when:
            change()
    
            then:
            headSha1ThenGetRequests()
            changedResolve()
        }
    
        def "no need for sha1 request if we get it in the metadata"() {
            given:
            server.sendSha1Header = true
            initialResolve()
    
            expect:
            headOnlyRequests()
            unchangedResolve()
    
            when:
            change()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

            buildFile << """
    apply plugin: 'java'
    
    task postCompile {
        doLast {
            if (!file('change-triggered').exists()) {
                println "Modifying 'Thing.java' after initial compile task"
                file("src/main/java/Thing.java").text = "class Thing { private static final boolean CHANGED=true; }"
                file('change-triggered').text = 'done'
            }
        }
        dependsOn 'classes'
    }
    jar.dependsOn postCompile
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIncrementalExecutionPerformanceTest.groovy

            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX, WINDOWS, MAC_OS], testProjects = "largeJavaMultiProject"),
            @Scenario(type = PER_DAY, operatingSystems = LINUX, testProjects = ["largeMonolithicGroovyProject", "largeMonolithicJavaProject"], iterationMatcher = "assemble for abi change")
        ])
        def "assemble for abi change#configurationCaching"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/test/groovy/com/myorg/LibraryPluginTest.groovy

        }
    
        def "fails when README does not have API section"() {
            given:
            new File(testProjectDir, 'README.md') << """
    ## Changelog
    - change 1
    - change 2
            """
    
            when:
            def result = runTaskWithFailure('check')
    
            then:
            result.task(":readmeCheck").outcome == TaskOutcome.FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/LibraryPluginTest.kt

        }
    
        @Test
        fun `fails when README does not have API section`() {
            testProjectDir.newFile("README.md").writeText("""
                ## Changelog
                - change 1
                - change 2
            """.trimIndent())
    
            val result = runTaskWithFailure ("check")
    
            assertEquals(TaskOutcome.FAILED, result.task(":readmeCheck")?.outcome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/LibraryPluginTest.kt

        }
    
        @Test
        fun `fails when README does not have API section`() {
            testProjectDir.newFile("README.md").writeText("""
                ## Changelog
                - change 1
                - change 2
            """.trimIndent())
    
            val result = runTaskWithFailure ("check")
    
            assertEquals(TaskOutcome.FAILED, result.task(":readmeCheck")?.outcome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/internalbootstrap/defaults_test.go

    			scheme.Default(defaulted)
    			if apiequality.Semantic.DeepEqual(original, defaulted) {
    				t.Logf("Defaulting makes no change to FlowSchema: %q", original.Name)
    				return
    			}
    			t.Errorf("Expected defaulting to not change FlowSchema: %q, diff: %s", original.Name, cmp.Diff(original, defaulted))
    		})
    	}
    
    	bootstrapPriorityLevels := make([]*flowcontrol.PriorityLevelConfiguration, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top