Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 297 for base_name (0.24 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerCppBuildExportIntegrationTest.groovy

                }
                project(':lib1') {
                    library {
                        baseName = 'hello'
                        dependencies {
                            implementation project(':lib2')
                        }
                    }
                }
                project('lib2') {
                    library {
                        baseName = 'log'
                    }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

    configureJarTasks()
    
    pluginManager.withPlugin("java-base") {
        configureClasspathManifestGeneration()
    }
    
    fun configureJarTasks() {
        tasks.withType<Jar>().configureEach {
            archiveBaseName = moduleIdentity.baseName
            archiveVersion = moduleIdentity.version.map { it.baseVersion.version }
            manifest.attributes(
                mapOf(
                    Attributes.Name.IMPLEMENTATION_TITLE.toString() to "Gradle",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tools/go-compile-verbose

    }
    
    GROOT="$(go env GOROOT)"
    GPATH="$(go env GOPATH)"
    GMODCACHE="$(go env GOMODCACHE)"
    ROOT="$PWD"
    
    $@
    ls="$(basename $1)"
    shift
    case "$ls" in
      link)
        log "${ls}\t$(basename ${2})" ;;
      compile)
        f=${@: -1}
        if [[ "$f" =~ "$GMODCACHE" ]]; then
          base="${f/"$GMODCACHE"\//}"
          mod="$(<<< "$base" cut -d@ -f1)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                    apply plugin: 'cpp-application'
                    application.baseName = 'testApp'
                    dependencies {
                        implementation project(':greeter')
                    }
                }
                project(':greeter') {
                    apply plugin: 'cpp-library'
                    library.baseName = 'appGreeter'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

        }
    
        @Override
        protected void configureTaskDefaults(Pmd task, String baseName) {
            Configuration configuration = project.getConfigurations().getAt(getConfigurationName());
            configureTaskConventionMapping(configuration, task);
            configureReportsConventionMapping(task, baseName);
            configureToolchains(task);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. src/internal/syscall/unix/constants.go

    //go:build unix
    
    package unix
    
    const (
    	R_OK = 0x4
    	W_OK = 0x2
    	X_OK = 0x1
    
    	// NoFollowErrno is the error returned from open/openat called with
    	// O_NOFOLLOW flag, when the trailing component (basename) of the path
    	// is a symbolic link.
    	NoFollowErrno = noFollowErrno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  7. buildscripts/checkdeps.sh

    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    	TARGET_FILE=$(basename $TARGET_FILE)
    
    	# Iterate down a (possible) chain of symlinks
    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

        @Override
        void assertPublished() {
            assertPublished(null, "jar")
        }
    
        static String variantName(String featureName, String baseName) {
            if (featureName == MAIN_FEATURE) {
                baseName
            } else {
                featureName + 'SourceSet' + baseName.capitalize()
            }
        }
    
        private static String featurePrefix(String feature) {
            feature == MAIN_FEATURE ? "" : "$feature-"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            when:
            project.pluginManager.apply(CppApplicationPlugin)
    
            then:
            project.application instanceof CppApplication
            project.application.baseName.get() == "testApp"
            project.application.cppSource.files == [src] as Set
        }
    
        def "registers a component for the application"() {
            when:
            project.pluginManager.apply(CppApplicationPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/DaemonJvmPropertiesConfigurator.java

    public class DaemonJvmPropertiesConfigurator implements ProjectConfigureAction {
    
        public static final String TASK_NAME = "updateDaemonJvm";
    
        @Override
        public void execute(ProjectInternal project) {
            // Only useful for the root project
            if (project.getParent() == null) {
                project.getTasks().register(TASK_NAME, UpdateDaemonJvm.class, task -> {
                    task.setGroup("Build Setup");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top