Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 288 for sublist (0.24 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r67/ToolingApiEclipseModelUnresolvedDependenciesCrossVersionSpec.groovy

        def setup() {
            def mavenRepo = new MavenFileRepository(file('maven-repo'))
            mavenRepo.module('org.example', 'lib', '1.0').publish()
    
            settingsFile << 'rootProject.name = "root"'
            buildFile << """
                plugins {
                    id 'java-library'
                }
    
                repositories {
                    maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            def util = mavenHttpRepo.module("org.external", "external-util").publish().allowAll()
            mavenHttpRepo.module("org.external", "external-lib")
                .dependsOn(util)
                .publish()
                .allowAll()
            mavenHttpRepo.module("org.external", "external-lib2")
                .dependsOn(util)
                .withModuleMetadata()
                .publish()
                .allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/build.gradle.kts

        implementation(project(":plugins-java-library"))
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":plugin-use"))
        implementation(project(":process-services"))
        implementation(project(":publish"))
        implementation(project(":testing-jvm"))
        implementation(project(":toolchains-jvm"))
    
        implementation(libs.asm)
        implementation(libs.guava)
    
        testImplementation(project(":file-collections"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
        id("gradlebuild.shaded-jar")
    }
    
    description = "Gradle Tooling API - the programmatic API to invoke Gradle"
    
    gradlebuildJava.usedInToolingApi()
    
    tasks.named<Jar>("sourcesJar") {
        // duplicate package-info.java because of split packages
        duplicatesStrategy = DuplicatesStrategy.EXCLUDE
    }
    
    shadedJar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderIntegrationTest.groovy

                ProjectBuilderImpl.stop(project)
            }
        }
    
        def "can resolve remote dependencies"() {
            def repo = new MavenHttpRepository(server, mavenRepo)
            repo.module("org.gradle", "a", "1.0").publish().allowAll()
            server.start()
    
            when:
            project = ProjectBuilder.builder().build()
            project.with {
                repositories {
                    maven { url repo.uri }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. internal/event/target/nats.go

    			_, err = target.stanConn.PublishAsync(target.args.Subject, data, nil)
    		} else {
    			err = target.stanConn.Publish(target.args.Subject, data)
    		}
    	} else {
    		if target.jstream != nil {
    			_, err = target.jstream.Publish(target.args.Subject, data)
    		} else {
    			err = target.natsConn.Publish(target.args.Subject, data)
    		}
    	}
    	return err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/build.sh

    }
    
    # Move into the directory of the script
    cd "$(dirname "$0")"
    
    if is_continuous_or_release || [[ -z "$KOKORO_BUILD_ID" ]]; then
      # A continuous job is the only one to publish to latest
      TAG="latest-multi-python"
    else
      # If it is a change, grab a good tag for iterative builds
      if [[ -z "${KOKORO_GITHUB_PULL_REQUEST_NUMBER}" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. tools/build-base-images.sh

      done
    done
    
    # Build apko base image, which isn't part of our image building tool
    APKO_ARCHES="$(echo "${DOCKER_ARCHITECTURES:-arm64,amd64}" | sed 's/linux\///g')"
    # shellcheck disable=SC2086
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            ]
        }
    
        def "order of entries in the effective classpath stays the same as in the original classpath"() {
            given:
            withIncludedBuild()
            mavenRepo.module("org", "commons", "3.2.1").publish()
            buildFile << """
                import java.nio.file.Paths
    
                buildscript {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelDependencyAccessRuleCrossVersionSpec.groovy

        def setup() {
            def mavenRepo = new MavenFileRepository(file("maven-repo"))
            mavenRepo.module("org.example", "example-lib", "1.0").publish()
    
            createDirs("sub")
            settingsFile <<
            """rootProject.name = 'root'
               include 'sub'
            """
    
            buildFile <<
            """apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top