Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for buildPath (1.03 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

                    transformActionClass == 'MakeGreen'
                    secondaryInputValueHashBytes != null
                }
            }
            with(projectTransformIdentification.componentId) {
                buildPath == ':'
                projectPath == ':producer'
            }
            with(externalTransformIdentification.componentId) {
                group == 'com.test'
                module == 'test'
                version == '4.2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

                map.put("pluginClass", getPluginClass().getName());
                map.put("targetType", getTargetType());
                map.put("targetPath", getTargetPath());
                map.put("buildPath", getBuildPath());
                map.put("applicationId", getApplicationId());
                return map;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

                this.identity = identity;
                this.replacement = replacement;
                this.eager = eager;
            }
    
            @Override
            public String getBuildPath() {
                return identity.buildPath.toString();
            }
    
            @Override
            public String getTaskPath() {
                return identity.projectPath.toString();
            }
    
            @Override
            public long getTaskId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            _ * dependencies.getDependencies(_) >> [dependsOn].toSet()
            _ * task.taskDependencies >> dependencies
            _ * task.project >> project
            _ * task.identityPath >> Path.path(services.identifier.buildPath).child("task")
            _ * task.taskIdentity >> TestTaskIdentities.create("task", DefaultTask, project)
            _ * task.destroyables >> Stub(TaskDestroyablesInternal)
            _ * task.localState >> Stub(TaskLocalStateInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            and:
            with(buildOperationRunner.operations[0]) {
                name == 'Notify task graph whenReady listeners'
                displayName == 'Notify task graph whenReady listeners'
                details.buildPath == ':'
            }
    
            when:
            def finalizedPlan2 = Stub(FinalizedExecutionPlan)
            taskGraph.populate(finalizedPlan2)
            taskGraph.execute(finalizedPlan2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. 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)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    		},
    		Spec: k8s.GatewaySpec{
    			GatewayClassName: k8s.ObjectName(features.GatewayAPIDefaultGatewayClass),
    		},
    	}
    	gws.Create(defaultGateway)
    	assert.Equal(t, assert.ChannelHasItem(t, writes), buildPatch(ControllerVersion))
    	expectReconciled()
    	assert.ChannelIsEmpty(t, writes)
    	// Test fake doesn't actual do Apply, so manually do this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    func fakeVersion() version.Info {
    	return version.Info{
    		Major:        "42",
    		Minor:        "42",
    		GitVersion:   "42",
    		GitCommit:    "34973274ccef6ab4dfaaf86599792fa9c3fe4689",
    		GitTreeState: "Dirty",
    		BuildDate:    time.Now().String(),
    		GoVersion:    goruntime.Version(),
    		Compiler:     goruntime.Compiler,
    		Platform:     fmt.Sprintf("%s/%s", goruntime.GOOS, goruntime.GOARCH),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top