Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for Fd2path (0.18 sec)

  1. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            def idPath = Path.path(":$name")
            def buildIdentifier = new DefaultBuildIdentifier(idPath)
    
            def gradle = Stub(GradleInternal)
            def services = Stub(ServiceRegistry)
    
            def includedBuild = Stub(IncludedBuildState)
            includedBuild.buildRootDir >> buildDefinition.buildRootDir
            includedBuild.identityPath >> idPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/run.bash

    # Defaults to 1.
    
    set -e
    
    if [ ! -f ../bin/go ]; then
    	echo 'run.bash must be run from $GOROOT/src after installing cmd/go' 1>&2
    	exit 1
    fi
    
    export GOENV=off
    eval $(../bin/go tool dist env)
    
    unset CDPATH	# in case user has it set
    
    export GOHOSTOS
    export CC
    
    # no core files, please
    ulimit -c 0
    
    # Raise soft limits to hard limits for NetBSD/OpenBSD.
    # We need at least ~300 MB of bss.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/validation/validation.go

    	allErrs := field.ErrorList{}
    	hasObjectMetrics := false
    	hasExternalMetrics := false
    
    	for i, metricSpec := range metrics {
    		idxPath := fldPath.Index(i)
    		if targetErrs := validateMetricSpec(metricSpec, idxPath); len(targetErrs) > 0 {
    			allErrs = append(allErrs, targetErrs...)
    		}
    		if metricSpec.Type == autoscaling.ObjectMetricSourceType {
    			hasObjectMetrics = true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            // The visual C++ tools use the path to find other executables
            // TODO:ADAM - restrict this to the specific path for the target tool
            invocationContext.addPath(visualCpp.getPath());
            invocationContext.addPath(sdk.getPath());
            // Clear environment variables that might effect cl.exe & link.exe
            clearEnvironmentVars(invocationContext, "INCLUDE", "CL", "LIBPATH", "LINK", "LIB");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

            MessageDigest md = MessageDigest.getInstance("MD5");
            md.update(artifact.getId().getBytes());
            byte[] digest = md.digest();
    
            String md5path = repository.pathOf(artifact) + ".md5";
            File md5artifactFile = new File(repository.getBasedir(), md5path);
            try (Writer writer =
                    new OutputStreamWriter(new FileOutputStream(md5artifactFile), StandardCharsets.ISO_8859_1)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    func IsDomainPrefixedPath(fldPath *field.Path, dpPath string) field.ErrorList {
    	var allErrs field.ErrorList
    	if len(dpPath) == 0 {
    		return append(allErrs, field.Required(fldPath, ""))
    	}
    
    	segments := strings.SplitN(dpPath, "/", 2)
    	if len(segments) != 2 || len(segments[0]) == 0 || len(segments[1]) == 0 {
    		return append(allErrs, field.Invalid(fldPath, dpPath, "must be a domain-prefixed path (such as \"acme.io/foo\")"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/apis/storage/validation/validation.go

    	for i, term := range topologies {
    		idxPath := fldPath.Index(i)
    		exprMap, termErrs := apivalidation.ValidateTopologySelectorTerm(term, fldPath.Index(i))
    		allErrs = append(allErrs, termErrs...)
    
    		// TODO (verult) consider improving runtime
    		for _, t := range rawTopologies {
    			if helper.Semantic.DeepEqual(exprMap, t) {
    				allErrs = append(allErrs, field.Duplicate(idxPath.Child("matchLabelExpressions"), ""))
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. hack/lib/init.sh

    set -o nounset
    set -o pipefail
    
    # Short-circuit if init.sh has already been sourced
    [[ $(type -t kube::init::loaded) == function ]] && return 0
    
    # Unset CDPATH so that path interpolation can work correctly
    # https://github.com/kubernetes/kubernetes/issues/52255
    unset CDPATH
    
    # The root of the build/dist directory
    KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

            def projectState = Mock(ProjectState)
            projectState.componentIdentifier >> Stub(ProjectComponentIdentifier)
            def project = Mock(ProjectInternal)
            project.identityPath >> Path.path(":id:path")
            project.projectPath >> Path.path(":bar")
            project.name >> "bar"
            project.owner >> projectState
    
            when:
            details.useTarget(project)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

                }
                validateNameIsNotBuildSrc(buildName, buildDir);
                Path idPath = buildPath != null ? buildPath : assignPath(rootBuild, buildName, buildDir);
                BuildIdentifier buildIdentifier = idFor(idPath);
    
                includedBuild = includedBuildFactory.createBuild(buildIdentifier, buildDefinition, isImplicit, rootBuild);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top