Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getTargetPath (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/ConfigurationTargetIdentifier.java

        }
    
        public abstract Type getTargetType();
    
        /**
         * If type == project, that project's path (not identity path).
         * Else, null.
         */
        @Nullable
        public abstract String getTargetPath();
    
        public abstract String getBuildPath();
    
        /**
         * Returns null if the thing is of an unknown type.
         * This can happen with {@code apply(from: "foo", to: someTask)},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/BuildOperationScriptPlugin.java

                return identifier == null ? null : identifier.getTargetType().label;
            }
    
            @Nullable
            @Override
            public String getTargetPath() {
                return identifier == null ? null : identifier.getTargetPath();
            }
    
            @Override
            public String getBuildPath() {
                return identifier == null ? null : identifier.getBuildPath();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_util_test.go

    	}
    
    	for i, tc := range testCases {
    		t.Logf("test case: %s", tc.name)
    		specVolID := fmt.Sprintf("spec-volid-%d", i)
    		targetPath := getTargetPath(testPodUID, specVolID, plug.host)
    		mountDir := filepath.Join(targetPath, "mount")
    		if err := os.MkdirAll(mountDir, 0755); err != nil && !os.IsNotExist(err) {
    			t.Errorf("failed to create dir [%s]: %v", mountDir, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/plugins/ApplyPluginBuildOperationType.java

             * One of "gradle", "settings", "project".
             */
            String getTargetType();
    
            /**
             * If the target is a project, its path.
             */
            @Nullable
            String getTargetPath();
    
            /**
             * The build path of the target.
             */
            String getBuildPath();
    
            /**
             * A unique ID for this plugin application, within this build operation tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/ApplyScriptPluginBuildOperationType.java

             */
            @Nullable
            String getTargetType();
    
            /**
             * If the target is a project, its path.
             */
            @Nullable
            String getTargetPath();
    
            /**
             * The build path, if the target is a known type (i.e. targetType != null)
             */
            @Nullable
            String getBuildPath();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top