- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for basename (0.08 sec)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/FileToRawModelMergerTest.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java
} public void testInheritance(String baseName) throws IOException { testInheritance(baseName, false); testInheritance(baseName, true); } public void testInheritance(String baseName, boolean fromRepo) throws IOException { Model parent = getModel(baseName + "-parent"); Model child = getModel(baseName + "-child"); if (fromRepo) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.9K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
from(components["java"]) artifactId = moduleIdentity.baseName.get() versionMapping { usage("java-api") { fromResolutionResult() } usage("java-runtime") { fromResolutionResult() } } pom { packaging = "jar" name = moduleIdentity.baseName.map { "${project.group}:$it" } } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 19 13:21:47 UTC 2024 - 5.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java
} String baseName; String ext = missing ? ".miss" : ".dep"; Path trackingFile = null; String indent = ""; ArrayList<String> trackingData = new ArrayList<>(); if (collectStepTrace == null && plugin != null) { ext = ".plugin"; baseName = plugin.getGroupId() + "_" + plugin.getArtifactId() + "_" + plugin.getVersion();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
return; } ClassMetaData outerClass = classStack.isEmpty() ? null : getCurrentClass(); String baseName = typeDeclaration.getNameAsString(); String className = outerClass == null ? packageName + '.' + baseName : outerClass.getClassName() + '.' + baseName; String comment = getJavadocComment(typeDeclaration);
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
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 Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 133 bytes - Viewed (0) -
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 Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 05 11:57:44 UTC 2024 - 40.3K bytes - Viewed (0) -
istioctl/cmd/root.go
) // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters func ConfigAndEnvProcessing() error { configPath := filepath.Dir(root.IstioConfig) baseName := filepath.Base(root.IstioConfig) configType := filepath.Ext(root.IstioConfig) configName := baseName[0 : len(baseName)-len(configType)] if configType != "" { configType = configType[1:] } // Allow users to override some variables through $HOME/.istioctl/config.yaml
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Aug 05 02:08:47 UTC 2024 - 9.6K bytes - Viewed (0) -
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 Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 3.4K bytes - Viewed (0) -
Makefile.core.mk
BUILD_ALL ?= true define build-linux .PHONY: $(TARGET_OUT_LINUX)/$(shell basename $(1)) ifeq ($(BUILD_ALL),true) $(TARGET_OUT_LINUX)/$(shell basename $(1)): build-linux @: else $(TARGET_OUT_LINUX)/$(shell basename $(1)): $(TARGET_OUT_LINUX) GOOS=linux GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $(TARGET_OUT_LINUX)/ -tags=$(2) $(1)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0)