Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for External (1.76 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/HttpProxyScriptPluginIntegrationSpec.groovy

            def script = file('external.gradle')
            server.expectGet('/external.gradle', script)
    
            script << """
                task doStuff
                assert buildscript.sourceFile == null
                assert "${server.uri}/external.gradle" == buildscript.sourceURI as String
    """
    
            buildFile << """
                apply from: '$server.uri/external.gradle'
                defaultTasks 'doStuff'
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DependencyConstraintMetadataRulesTest.groovy

     */
    
    package org.gradle.internal.component.external.model
    
    import org.gradle.api.Action
    import org.gradle.api.artifacts.DependenciesMetadata
    import org.gradle.api.internal.artifacts.DefaultModuleIdentifier
    import org.gradle.api.internal.artifacts.DependencyManagementTestUtil
    import org.gradle.internal.component.external.descriptor.MavenScope
    import org.gradle.internal.component.external.model.maven.MavenDependencyDescriptor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # via a flag, so using internal linking it is.
    [cgolinkext] go list ./usesInternalCgo
    [!cgolinkext] go build '-ldflags=-tmpdir=tmp5 -linkmode=internal' -o $devnull ./usesInternalCgo &
    
    # Sixth build: explicit CGO use in a non-main package.
    go build -o p.a ./nonMainPackageUsesExplicitCgo &
    
    wait
    
    # Check first build: no external linking expected
    ! exists tmp1/go.o
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/mirror_test.go

    			},
    		},
    	})
    }
    
    // Tests mirroring to an external service. Uses same topology as the test above, a -> b -> external, with "external" being external.
    //
    // Since we don't want to rely on actual external websites, we simulate that by using a Sidecar to limit connectivity
    // from "a" so that it cannot reach "external" directly, and we use a ServiceEntry to define our "external" website, which
    // is static and points to the service "external" ip.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/tests/outgoingVariants.out

    Variant apiElements
    --------------------------------------------------
    API elements for the 'main' feature.
    
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
        - org.gradle.jvm.version         = 11
        - org.gradle.libraryelements     = jar
        - org.gradle.usage               = java-api
    
    Artifacts
        - build/libs/producer.jar (artifactType = jar)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactCollectionIntegrationTest.groovy

                        // Check external artifact
                        def idx = artifacts.findIndexOf { it.file.name == 'external-lib-1.0.jar' }
    
                        def result = artifactResults[idx]
                        assert result.file == artifactFiles[idx]
    
                        assert result.id instanceof org.gradle.internal.component.external.model.ModuleComponentArtifactIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/version_cshared.txt

    [short] skip
    [!cgo] skip '-buildmode=c-shared requires external linking'
    [!buildmode:c-shared] stop
    
    env GO111MODULE=on
    
    go get rsc.io/fortune
    go build -buildmode=c-shared -o external.so rsc.io/fortune
    go version external.so
    stdout '^external.so: .+'
    go version -m external.so
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    -- go.mod --
    module m
    
    -- empty.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 416 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.java-conventions.gradle

    // Projects need to use the Java, Checkstyle and Spotbugs plugins.
    
    // tag::apply-external-plugin[]
    plugins {
        id 'java'
        id 'checkstyle'
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id 'com.github.spotbugs'
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.java-conventions.gradle.kts

    // Projects need to use the Java, Checkstyle and Spotbugs plugins.
    
    // tag::apply-external-plugin[]
    plugins {
        java
        checkstyle
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id("com.github.spotbugs")
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

    // Projects need to use the Java, Checkstyle and Spotbugs plugins.
    
    // tag::apply-external-plugin[]
    plugins {
        java
        checkstyle
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id("com.github.spotbugs")
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
Back to top