Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for Fd2path (0.13 sec)

  1. 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)
  2. 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)
  3. pkg/apis/networking/validation/validation.go

    	for i, ingress := range status.Ingress {
    		idxPath := fldPath.Child("ingress").Index(i)
    		if len(ingress.IP) > 0 {
    			allErrs = append(allErrs, validation.IsValidIP(idxPath.Child("ip"), ingress.IP)...)
    		}
    		if len(ingress.Hostname) > 0 {
    			for _, msg := range validation.IsDNS1123Subdomain(ingress.Hostname) {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, msg))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/main/assemblies/files/fess

    #    -D prop       set JAVA system property
    #    -X prop       set non-standard JAVA system property
    #   --prop=val
    #   --prop val     set fess property (i.e.  -Des.<prop>=<val>)
    
    CDPATH=""
    SCRIPT="$0"
    
    # SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
    while [ -h "$SCRIPT" ] ; do
      ls=`ls -ld "$SCRIPT"`
      # Drop everything prior to ->
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

                        if (submodule != null) {
                            Git submoduleGit = Git.wrap(submodule);
                            configureTransport(submoduleGit.fetch()).call();
                            git.submoduleUpdate().addPath(walker.getPath()).call();
                            submoduleGit.reset().setMode(ResetCommand.ResetType.HARD).call();
                            updateSubModules(submoduleGit);
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/filewatcher/worker.go

    func retireTracker(ft *fileTracker) {
    	close(ft.events)
    	close(ft.errors)
    	ft.events = nil
    	ft.errors = nil
    }
    
    func (wk *worker) terminate() {
    	wk.terminateCh <- true
    }
    
    func (wk *worker) addPath(path string) error {
    	wk.mu.Lock()
    
    	ft := wk.watchedFiles[path]
    	if ft != nil {
    		wk.mu.Unlock()
    		return fmt.Errorf("path %s is already being watched", path)
    	}
    
    	ft = &fileTracker{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. pkg/bootstrap/instance_test.go

    		compliancePolicy              string
    		enableDefferedClusterCreation bool
    	}{
    		{
    			base: "xdsproxy",
    		},
    		{
    			base: "auth",
    		},
    		{
    			base:         "authsds",
    			sdsUDSPath:   "udspath",
    			sdsTokenPath: "/var/run/secrets/tokens/istio-token",
    		},
    		{
    			base: "default",
    		},
    		{
    			base: "running",
    			envVars: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

            MutableCommandLineToolContext baseInvocation = new DefaultMutableCommandLineToolContext();
            // MinGW requires the path to be set
            baseInvocation.addPath(toolSearchPath.getPath());
            baseInvocation.addEnvironmentVar("CYGWIN", "nodosfilewarning");
            baseInvocation.setArgAction(toolConfiguration.getArgAction());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. integration-tests/gradle/gradlew

          /*)   app_path=$link ;; #(
          *)    app_path=$APP_HOME$link ;;
        esac
    done
    
    # This is normally unused
    # shellcheck disable=SC2034
    APP_BASE_NAME=${0##*/}
    # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
    APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
    
    # Use the maximum available, or set MAX_FD != -1 to use that value.
    MAX_FD=maximum
    
    warn () {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_test.go

    			t.Fatalf("expected 1 LB endpoint but got %d", len(ep0.LbEndpoints))
    		}
    		lbep := ep0.LbEndpoints[0]
    		path := lbep.GetEndpoint().GetAddress().GetPipe().GetPath()
    		if path != udsPath {
    			t.Fatalf("expected Pipe to %s, got %s", udsPath, path)
    		}
    	}
    }
    
    // Update
    func edsUpdates(s *xdsfake.FakeDiscoveryServer, adsc *adsc.ADSC, t *testing.T) {
    	// Old style (non-incremental)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top