Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for buildPath (0.36 sec)

  1. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTest.groovy

            services.add(Stub(DocumentationRegistry))
            services.add(Stub(BuildTreeWorkGraphController))
            _ * buildTree.services >> services
    
            def buildId = Stub(BuildIdentifier) {
                buildPath >> Path.path(":a:b:c")
            }
            build = new DefaultIncludedBuild(buildId, buildDefinition, false, owningBuild, buildTree, Mock(Instantiator))
        }
    
        def "creates a foreign id for projects"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 22 14:22:44 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override fun addIncludedBuild(buildDefinition: BuildDefinition, settingsFile: File?, buildPath: Path): ConfigurationCacheBuild {
                return DefaultConfigurationCacheBuild(buildStateRegistry.addIncludedBuild(buildDefinition, buildPath), fileResolver, buildStateRegistry, settingsFile)
            }
    
            override fun getBuildSrcOf(ownerId: BuildIdentifier): ConfigurationCacheBuild {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         *
         * This is used when loaded from the Configuration Cache when the path of the build is already known.
         */
        IncludedBuildState addIncludedBuild(BuildDefinition buildDefinition, Path buildPath);
    
        /**
         * Creates an implicit included build. An implicit build is-a nested build that is managed by Gradle and whose outputs are used by dependency resolution.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

            def opsPerCache = configCache ? 2 : 1
            finalizeOps.size() == expectedCacheDirs.size() * opsPerCache
            def pathToCacheDirMap = finalizeOps.collectEntries {
                [
                    it.details.buildPath,
                    new File(it.result.local.config.location as String)
                ]
            } as Map<String, File>
    
            pathToCacheDirMap == expectedCacheDirs
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

        }
    
        protected String formatComponent(ResolvedComponentResult result) {
            String type
            if (result.id instanceof ProjectComponentIdentifier) {
                type = "project:${Path.path(result.id.build.buildPath).append(Path.path(result.id.projectPath))}"
            } else if (result.id instanceof ModuleComponentIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/version_openapi.json

      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.version.Info": {
            "description": "Info contains versioning information. how we'll want to distribute that information.",
            "properties": {
              "buildDate": {
                "default": "",
                "type": "string"
              },
              "compiler": {
                "default": "",
                "type": "string"
              },
              "gitCommit": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 00:49:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/version/types.go

    	Major        string `json:"major"`
    	Minor        string `json:"minor"`
    	GitVersion   string `json:"gitVersion"`
    	GitCommit    string `json:"gitCommit"`
    	GitTreeState string `json:"gitTreeState"`
    	BuildDate    string `json:"buildDate"`
    	GoVersion    string `json:"goVersion"`
    	Compiler     string `json:"compiler"`
    	Platform     string `json:"platform"`
    }
    
    // String returns info as a human-friendly version string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 17 11:34:05 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

                }
            """
    
            then:
            succeeds "t"
            def buildPaths = scopeIds.lastBuildPaths()
            buildPaths.size() == 2
            def ids = scopeIds.idsOfBuildTree(0)
            ids[":"].user != ids[buildPaths[1]].user
        }
    
        def "gradle-build with same root and user dir inherits all"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. cmd/kubelet/app/auth.go

    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	"k8s.io/kubernetes/pkg/kubelet/server"
    )
    
    // BuildAuth creates an authenticator, an authorizer, and a matching authorizer attributes getter compatible with the kubelet's needs
    // It returns AuthInterface, a run method to start internal controllers (like cert reloading) and error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. cmd/kubeadm/test/cmd/version_test.go

    	NormalExpectedRegex = "^kubeadm version: &version\\.Info{Major:\".+\", Minor:\".+\", GitVersion:\".+\", GitCommit:\".+\", GitTreeState:\".+\", BuildDate:\".+\", GoVersion:\".+\", Compiler:\".+\", Platform:\".+\"}\n$"
    )
    
    var (
    	VersionInfo = []string{"major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform"}
    )
    
    func TestCmdVersion(t *testing.T) {
    	var versionTest = []struct {
    		name     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 19:06:01 UTC 2020
    - 3.7K bytes
    - Viewed (0)
Back to top