Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 205 for composite_ (0.17 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            then:
            outputContains "Hello from original task!"
            assertWatchableHierarchies([ImmutableSet.of(testDirectory), ImmutableSet.of(testDirectory, file("buildSrc"))])
        }
    
        def "works with composite build"() {
            buildTestFixture.withBuildInSubDir()
            def includedBuild = singleProjectBuild("includedBuild") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

            this.type = type;
        }
    
        protected TypeOf() {
            this.type = captureTypeArgument();
        }
    
        /**
         * Queries whether this object represents a simple (non-composite) type, not an array and not a generic type.
         *
         * @return true if this object represents a simple type.
         */
        public boolean isSimple() {
            return type.isClass()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.composite.internal;
    
    import com.google.common.base.MoreObjects;
    import org.gradle.api.GradleException;
    import org.gradle.api.artifacts.component.BuildIdentifier;
    import org.gradle.api.internal.BuildDefinition;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. .teamcity/subprojects.json

      {
        "name": "code-quality",
        "path": "platforms/jvm/code-quality",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "composite-builds",
        "path": "subprojects/composite-builds",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "concurrent",
        "path": "platforms/core-runtime/concurrent",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

    import org.gradle.execution.taskgraph.TaskExecutionGraphInternal
    import org.gradle.initialization.SettingsState
    import org.gradle.internal.build.BuildState
    import org.gradle.internal.build.PublicBuildPath
    import org.gradle.internal.composite.IncludedBuildInternal
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.util.Path
    import java.io.File
    import java.util.Objects
    import java.util.function.Supplier
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.execution.taskgraph.NotifyTaskGraphWhenReadyBuildOperationType
    import org.gradle.initialization.BuildIdentifiedProgressDetails
    import org.gradle.initialization.ConfigureBuildBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/extensions.kt

        }
    
        requirements {
            requiresOs(os)
            requiresArch(os, arch)
        }
    
        failureConditions {
            if (******@****.*** != BuildTypeSettings.Type.COMPOSITE) {
                executionTimeoutMin = timeout
            }
            testFailure = false
            supportTestRetry = true
            add {
                failOnText {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    			ui.Print(`Try "sample_index" command to analyze different sample values.`, "\n")
    		}
    	}
    	ui.Print(`Entering interactive mode (type "help" for commands, "o" for options)`)
    }
    
    // shortcuts represents composite commands that expand into a sequence
    // of other commands.
    type shortcuts map[string][]string
    
    func (a shortcuts) expand(input string) []string {
    	input = strings.TrimSpace(input)
    	if a != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

                        module("org:explicit-dependency:3.4")
                        module("org:added-dependency:3.4")
                    }
                }
            }
        }
    
        def "can use defaultDependencies in a composite build"() {
            buildTestFixture.withBuildInSubDir()
            mavenRepo.module("org", "explicit-dependency", "3.4").publish()
            mavenRepo.module("org", "added-dependency", "3.4").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

    import org.gradle.internal.buildtree.BuildTreeState;
    import org.gradle.internal.buildtree.RunTasksRequirements;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.composite.IncludedBuildInternal;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.id.UniqueId;
    import org.gradle.internal.logging.services.LoggingServiceRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top