Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withProjectPath (0.2 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ApiRequirementNativeDependencyResolver.java

            public NativeLibraryRequirement getOriginal() {
                return original;
            }
    
            @Override
            public NativeLibraryRequirement withProjectPath(String projectPath) {
                return new ApiAdaptedNativeLibraryRequirement(original.withProjectPath(projectPath));
            }
    
            @Override
            public String getProjectPath() {
                return original.getProjectPath();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/ProjectNativeLibraryRequirement.java

            this.projectPath = projectPath;
            this.libraryName = libraryName;
            this.linkage = linkage;
        }
    
        @Override
        public NativeLibraryRequirement withProjectPath(String projectPath) {
            return new ProjectNativeLibraryRequirement(projectPath, libraryName, linkage);
        }
    
        @Override
        public String getProjectPath() {
            return projectPath;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/RequirementParsingNativeDependencyResolver.java

                if (requirement.getProjectPath() == null || requirement.getProjectPath().isEmpty()) {
                    requirement = requirement.withProjectPath(nativeBinaryResolveResult.getTarget().getProjectPath());
                }
                resolution.setRequirement(requirement);
            }
            delegate.resolve(nativeBinaryResolveResult);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeLibraryRequirement.java

        /**
         * The required linkage.
         */
        String getLinkage();
    
        /**
         * Creates a copy of this requirement with the specified project path
         */
        NativeLibraryRequirement withProjectPath(String projectPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top