Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for Fd2path (0.11 sec)

  1. security/pkg/nodeagent/sds/sdsservice_test.go

    				},
    			},
    		},
    	}
    	usefakePrivateKeyProviderConf = false
    )
    
    type TestServer struct {
    	t       *testing.T
    	server  *Server
    	udsPath string
    	store   *ca2.DirectSecretManager
    }
    
    func (s *TestServer) Connect() *xds.AdsTest {
    	conn, err := setupConnection(s.udsPath)
    	if err != nil {
    		s.t.Fatal(err)
    	}
    	return xds.NewSdsTest(s.t, conn)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/filewatcher/filewatcher.go

    func (fw *fileWatcher) Add(path string) error {
    	fw.mu.Lock()
    	defer fw.mu.Unlock()
    
    	ws, cleanedPath, _, err := fw.getWorker(path)
    	if err != nil {
    		return err
    	}
    
    	if err = ws.worker.addPath(cleanedPath); err == nil {
    		ws.count++
    	}
    
    	return err
    }
    
    // Stop watching a path
    func (fw *fileWatcher) Remove(path string) error {
    	fw.mu.Lock()
    	defer fw.mu.Unlock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top