Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 137 for taskname (0.18 sec)

  1. docs/debugging/build.sh

    #!/bin/bash
    
    export CGO_ENABLED=0
    for dir in docs/debugging/*/; do
    	bin=$(basename ${dir})
    	go build -C ${dir} -o ${PWD}/${bin}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 133 bytes
    - Viewed (0)
  2. subprojects/public-api/build.gradle.kts

                artifactId = moduleIdentity.baseName.get()
    
                from(components["gradleApi"])
    
                versionMapping {
                    allVariants {
                        fromResolutionOf(configurations.externalRuntimeClasspath.get())
                    }
                }
    
                pom {
                    name = moduleIdentity.baseName.map { "${project.group}:$it"}
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 13:15:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.StartParameter.currentDir don't use symmetrical @Nullable
    Accessors for org.gradle.StartParameter.gradleUserHomeDir don't use symmetrical @Nullable
    Accessors for org.gradle.StartParameter.taskNames don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.dirMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.fileMode don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/trace/gstate.go

    // a timeline of events. e.g. R=ProcID for a proc-oriented view, R=GoID for
    // a goroutine-oriented view, etc.
    type gState[R resource] struct {
    	baseName  string
    	named     bool   // Whether baseName has been set.
    	label     string // EventLabel extension.
    	isSystemG bool
    
    	executing R // The resource this goroutine is executing on. (Could be itself.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. docs/debugging/xl-meta/main.go

    							return r
    						default:
    							return '_'
    						}
    					}, file)
    				}
    				if baseName == "" {
    					if strings.HasSuffix(file, "/xl.meta") {
    						baseName = strings.TrimSuffix(file, "/xl.meta")
    						if idx := strings.LastIndexByte(baseName, '/'); idx > 0 {
    							baseName = baseName[idx+1:]
    						}
    					}
    				}
    				err := data.files(func(name string, data []byte) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	}
    mapping:
    	for _, m := range p.Mapping {
    		var noVolumeFile string
    		var baseName string
    		var dirName string
    		if m.File != "" {
    			noVolumeFile = strings.TrimPrefix(m.File, filepath.VolumeName(m.File))
    			baseName = filepath.Base(m.File)
    			dirName = filepath.Dir(noVolumeFile)
    		}
    
    		for _, path := range filepath.SplitList(searchPath) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        }
    
        private Set<String> unixClasspath(String baseName) {
            String[] lines = file("build/install/$baseName/bin/$baseName")
            (lines.find { it.startsWith 'CLASSPATH=' } - 'CLASSPATH=').split(':').collect([] as Set) { it - '$APP_HOME/lib/' }
        }
    
        private Set<String> windowsClasspath(String baseName) {
            String[] lines = file("build/install/$baseName/bin/${baseName}.bat")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top