Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for getLibrary (0.29 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyCppDepApp.groovy

        IncrementalSwiftAppWithCppDep getApplication() {
            return main
        }
    
        String getExpectedOutput() {
            return main.expectedOutput
        }
    
        IncrementalCppGreeter getLibrary() {
            return lib
        }
    
        String getAlternateLibraryOutput() {
            return main.expectedAlternateOutput
        }
    
        class IncrementalCppGreeter extends IncrementalCppElement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleLinkOutputAppWithLib.groovy

        IncrementalCppAppWithDep getExecutable() {
            return main
        }
    
        String getExpectedOutput() {
            return main.expectedOutput
        }
    
        IncrementalCppLib getLibrary() {
            return lib
        }
    
        class IncrementalCppLib extends IncrementalCppElement {
            final greeter = new CppGreeter()
            final sum = new CppSum()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeLibraryBinarySpec.java

        @Override
        public NativeLibrarySpec getComponent() {
            return getComponentAs(NativeLibrarySpec.class);
        }
    
        @Override
        public NativeLibrarySpec getLibrary() {
            return getComponentAs(NativeLibrarySpec.class);
        }
    
        protected boolean hasSources() {
            for (LanguageSourceSet sourceSet : getInputs()) {
                if (!sourceSet.getSource().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractLibrary.java

            } else {
                getEntryAttributes().remove(ATTRIBUTE_JAVADOC_LOCATION);
            }
        }
    
        public FileReference getLibrary() {
            return library;
        }
    
        public void setLibrary(FileReference library) {
            this.library = library;
            setPath(library.getPath());
        }
    
        @Nullable
        public ModuleVersionIdentifier getModuleVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithLibraryUsingLibraryHelloWorldApp.groovy

        void writeSources(TestFile mainSourceDir, TestFile librarySourceDir, TestFile greetingsLibrarySourceDir) {
            getExecutable().writeSources(mainSourceDir)
            getLibrary().writeSources(librarySourceDir)
            getGreetingsHeader().writeToDir(greetingsLibrarySourceDir)
            for (SourceFile sourceFile : greetingsSources) {
                sourceFile.writeToDir(greetingsLibrarySourceDir)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

            } else {
                return Collections.emptyMap();
            }
        }
    
        private Map<String, Object> createDeploymentAttribute(AbstractLibrary entry) {
            File file = entry.getLibrary().getFile();
            if (!isUtilityProject) {
                if (rootConfigFiles.contains(file)) {
                    return ImmutableMap.of(AbstractClasspathEntry.COMPONENT_DEPENDENCY_ATTRIBUTE, "/");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top