Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for buildPath (0.14 sec)

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

                with(plannedTransformStepIdentity) {
                    nodeType == "TRANSFORM_STEP"
                    consumerBuildPath == ":"
                    consumerProjectPath == ":app"
                    componentId == [buildPath: ":", projectPath: ":lib"]
                    sourceAttributes == [artifactType: "jar", usage: "api"]
                    targetAttributes == [artifactType: "size", usage: "api"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top