Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for LibraryName (0.19 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            @Override
            public String getSharedLibraryName(String libraryName) {
                return getLibraryName(libraryName, getSharedLibrarySuffix());
            }
    
            private String getLibraryName(String libraryName, String suffix) {
                if (libraryName.endsWith(suffix)) {
                    return libraryName;
                }
                int pos = libraryName.lastIndexOf('/');
                if (pos >= 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultProjectDependencySpec.java

        private final String projectPath;
        private final String libraryName;
    
        public DefaultProjectDependencySpec(String libraryName, String projectPath) {
            if (libraryName == null && projectPath == null) {
                throw new IllegalDependencyNotation("A project dependency must have at least a project or library name specified.");
            }
            this.libraryName = libraryName;
            this.projectPath = projectPath;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLibraryComponentSelector.java

        private final String projectPath;
        private final String libraryName;
        private final String variant;
    
        public DefaultLibraryComponentSelector(String projectPath, String libraryName) {
            this(projectPath, libraryName, null);
        }
    
        public DefaultLibraryComponentSelector(String projectPath, String libraryName, String variant) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryBinaryIdentifierTest.groovy

        }
    
        def "can compare with other instance (#projectPath,#libraryName,#variant)"() {
            expect:
            LibraryBinaryIdentifier defaultBuildComponentIdentifier1 = new DefaultLibraryBinaryIdentifier(':myProjectPath1', 'myLib', 'api')
            LibraryBinaryIdentifier defaultBuildComponentIdentifier2 = new DefaultLibraryBinaryIdentifier(projectPath, libraryName, variant)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/LibraryIdentifier.java

    public class LibraryIdentifier {
        private final String projectPath;
        private final String libraryName;
    
        public LibraryIdentifier(String projectPath, String libraryName) {
            this.libraryName = libraryName;
            this.projectPath = projectPath;
        }
    
        public String getLibraryName() {
            return libraryName;
        }
    
        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.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLibraryBinaryIdentifier.java

            assert variant != null : "variant cannot be null";
            this.projectPath = projectPath;
            this.libraryName = libraryName;
            this.variant = variant;
            this.displayName = "project '" + projectPath + "' library '" + libraryName + "' variant '" + variant + "'";
        }
    
        @Override
        public String getProjectPath() {
            return projectPath;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultLibraryBinaryDependencySpec.java

        private final String projectPath;
        private final String libraryName;
        private final String variant;
    
        public DefaultLibraryBinaryDependencySpec(String projectPath, String libraryName, String variant) {
            if (libraryName == null || projectPath == null || variant == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/ProjectNativeLibraryRequirement.java

        private final String projectPath;
        private final String libraryName;
        private final String linkage;
    
        public ProjectNativeLibraryRequirement(String libraryName, String linkage) {
            this.projectPath = null;
            this.libraryName = libraryName;
            this.linkage = linkage;
        }
    
        public ProjectNativeLibraryRequirement(String projectPath, String libraryName, String linkage) {
            this.projectPath = 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)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolChainIntegrationTest.groovy

                    def librarySearchPath = 'build/libs/hello/static'
                    def libraryName = 'hello'
                    if (toolChain in VisualCpp) {
                        linker.args "/LIBPATH:\${librarySearchPath}", "\${libraryName}.lib"
                    } else {
                        linker.args "-L\${librarySearchPath}", "-l\${libraryName}"
                    }
                }
            }
            hello(NativeLibrarySpec)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/LibraryResolutionResult.java

        }
    
        private void resolve(String libraryName) {
            if (libraryName == null) {
                VariantComponent singleMatchingLibrary = getSingleMatchingLibrary();
                if (singleMatchingLibrary == null) {
                    return;
                }
                libraryName = singleMatchingLibrary.getName();
            }
    
            selectedLibrary = libsMatchingRequirements.get(libraryName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top