Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for buildPath (1.46 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                    ? project.getMutableModel()
                    : null;
            }
    
            @Nullable
            private BuildState findBuild(Path buildPath) {
                return getBuildStateRegistry().findBuild(new DefaultBuildIdentifier(buildPath));
            }
    
            private BuildStateRegistry getBuildStateRegistry() {
                return gradle.getServices().get(BuildStateRegistry.class);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                val settingsFile = read() as File?
                val definition = readIncludedBuildDefinition(rootBuild)
                val buildPath = read() as Path
                rootBuild.addIncludedBuild(definition, settingsFile, buildPath)
            }
            return readNestedBuildState(build)
        }
    
        private
        fun GradleInternal.loadGradleProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            when:
            run()
    
            then:
            def projectsLoaded = operations.only(NotifyProjectsLoadedBuildOperationType, { it.details.buildPath == ':' })
            verifyExpectedNumberOfExecuteListenerChildren(projectsLoaded, expectedGradleOps.size() * 3)
            verifyHasChildren(projectsLoaded, initScriptAppId, 'init', expectedGradleOps)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		if err != nil {
    			return fmt.Errorf("failed to initialize kubelet heartbeat client: %w", err)
    		}
    	}
    
    	if kubeDeps.Auth == nil {
    		auth, runAuthenticatorCAReload, err := BuildAuth(nodeName, kubeDeps.KubeClient, s.KubeletConfiguration)
    		if err != nil {
    			return err
    		}
    		kubeDeps.Auth = auth
    		runAuthenticatorCAReload(ctx.Done())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"gitTreeState": {
    						SchemaProps: spec.SchemaProps{
    							Default: "",
    							Type:    []string{"string"},
    							Format:  "",
    						},
    					},
    					"buildDate": {
    						SchemaProps: spec.SchemaProps{
    							Default: "",
    							Type:    []string{"string"},
    							Format:  "",
    						},
    					},
    					"goVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

        },
        "io.k8s.apimachinery.pkg.version.Info": {
          "description": "Info contains versioning information. how we'll want to distribute that information.",
          "properties": {
            "buildDate": {
              "type": "string"
            },
            "compiler": {
              "type": "string"
            },
            "gitCommit": {
              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top