Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,852 for Working (0.15 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        ProcessForkOptions executable(Object executable);
    
        /**
         * Returns the working directory for the process. Defaults to the project directory.
         *
         * @return The working directory. Never returns null.
         */
        File getWorkingDir();
    
        /**
         * Sets the working directory for the process.
         *
         * @param dir The working directory. Must not be null.
         * @since 4.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonIntegrationTest.groovy

            }
    
            and:
            gradle.standardOutput.contains("Execution working dir: " + workerHomeDir)
    
            and:
            GradleContextualExecuter.isLongLivingProcess() || gradle.standardOutput.contains("Shutdown working dir: " + workerHomeDir)
        }
    
        def "setting the working directory of a worker is not supported"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. src/syscall/pwd_plan9.go

    // license that can be found in the LICENSE file.
    
    // The working directory in Plan 9 is effectively per P, so different
    // goroutines and even the same goroutine as it's rescheduled on
    // different Ps can see different working directories.
    //
    // Instead, track a Go process-wide intent of the current working directory,
    // and switch to it at important points.
    
    package syscall
    
    import (
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_cov.txt

    # it is _extremely_ unlikely that the fuzzer would produce this particular
    # input in any reasonable amount of time.
    
    [short] skip
    [!fuzz-instrumented] skip
    env GOCACHE=$WORK/cache
    
    # TODO(#51484): enabled debugging info to help diagnose a deadlock in the fuzzer
    env GODEBUG=fuzzdebug=1
    ! go test -fuzz=FuzzCov -v
    ! stderr 'cov instrumentation working'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 787 bytes
    - Viewed (0)
  5. src/os/path_windows.go

    		// If the path is relative, we need to prepend the working directory
    		// plus a separator to the path before we can determine if it's too long.
    		// We don't want to call syscall.Getwd here, as that call is expensive to do
    		// every time fixLongPath is called with a relative path, so we use a cache.
    		// Note that getwdCache might be outdated if the working directory has been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. .github/CONTRIBUTING.md

    - Favour a working external library if appropriate.  There are many examples of OkHttp libraries that can sit on top or hook in via existing APIs.
    - Get working code on a personal branch with tests before you submit a PR.
    - OkHttp is a small and light dependency.  Don't introduce new dependencies or major new functionality.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 17 04:16:26 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. releasenotes/notes/33734.yaml

    apiVersion: release-notes/v2
    kind: feature
    
    area: traffic-management
    issue: []
    
    releaseNotes:
    - |
      '**Improved** TCP probes now working as expected: When using TCP probes with older versions of istio the check was always successful, even if the application didn't open the port.'
    
    upgradeNotes:
      - title: TCP probes now working as expected
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 08:44:57 UTC 2021
    - 842 bytes
    - Viewed (0)
  8. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/VcsVersionWorkingDirResolver.java

    import java.io.File;
    
    public interface VcsVersionWorkingDirResolver {
        /**
         * Attempts to locate a matching version for the selector in the given VCS, returning the working directory to use for the version if found.
         *
         * @return The working directory or {@code null} if not found.
         */
        @Nullable
        File selectVersion(ModuleComponentSelector selector, VersionControlRepositoryConnection repository);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/state.go

    	ctx    context.Context
    	cancel context.CancelFunc
    	file   string
    	log    bytes.Buffer
    
    	workdir string            // initial working directory
    	pwd     string            // current working directory during execution
    	env     []string          // environment list (for os/exec)
    	envMap  map[string]string // environment mapping (matches env)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. cluster/addons/metrics-server/README.md

    ### Important notices
    
    Decreasing resource requirements for cluster addons may cause system instability. The effects may include (but are not limited to):
      - Horizontal Pod Autoscaler not working
      - `kubectl top` not working (starting with Kubernetes 1.10)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 18 13:04:48 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top