Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for exit1 (0.06 sec)

  1. src/cmd/cgo/gcc.go

    // If the command exits with a non-zero exit status, runGcc prints
    // details about what was run and exits.
    // Otherwise runGcc returns the data written to standard output and standard error.
    // Note that for some of the uses we expect useful data back
    // on standard error, but for those uses gcc must still exit 0.
    func runGcc(stdin []byte, args []string) (string, string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      )
      Log-Output "TODO: ${Message}"
    }
    
    # Writes a not-implemented warning with $Message to the console and exits the
    # script.
    function Log_NotImplemented {
      param (
        [parameter(Mandatory=$true)] [string]$Message
      )
      Log-Output "Not implemented yet: ${Message}" -Fatal
    }
    
    # Fails and exits if the route to the GCE metadata server is not present,
    # otherwise does nothing and emits nothing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter_test.go

    		spec             func(string, []string) *volume.Spec
    		shouldFail       bool
    		exitError        error
    		createAttachment bool
    	}{
    		{
    			name:   "setup with correct persistent volume source should result in finish exit status",
    			podUID: types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    			spec: func(fsType string, options []string) *volume.Spec {
    				pvSrc := makeTestPV("pv1", 20, testDriver, "vol1")
    				pvSrc.Spec.CSI.FSType = fsType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    				// append the service. Otherwise (TCP), change current listener to use protocol sniffing.
    				if currentListenerEntry.protocol.IsTCP() {
    					conflictType = HTTPOverTCP
    				} else {
    					// Exit early, listener already exists
    					return
    				}
    			}
    			opts = buildSidecarOutboundHTTPListenerOpts(listenerOpts, actualWildcards[0], listenerProtocol)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	// that child keeps stdout/stderr open. After the Git subprocess exits,
    	// os/exec expects to be able to read from the stdout/stderr pipe
    	// until EOF to get all the data that the Git subprocess wrote before exiting.
    	// The EOF doesn't come until the child exits too, because the child
    	// is holding the write end of the pipe.
    	// This is unfortunate, but it has come up at least twice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    	Args []string
    	// Output is the combined stdout and stderr of the command to return
    	Output string
    	// ReturnCode is the exit code for the command. Setting this to non-zero will
    	// cause the command to return an error with this exit code set.
    	ReturnCode int
    }
    
    // ScriptCommands configures fe, the FakeExec, to have a pre-configured list of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	// packages.
    	Tidy bool
    
    	// TidyDiff, if true, causes tidy not to modify go.mod or go.sum but
    	// instead print the necessary changes as a unified diff. It exits
    	// with a non-zero code if the diff is not empty.
    	TidyDiff bool
    
    	// TidyCompatibleVersion is the oldest Go version that must be able to
    	// reproducibly reload the requested packages.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	// Cache version.
    	writefile(version, path, 0)
    
    	return version
    }
    
    // isGitRepo reports whether the working directory is inside a Git repository.
    func isGitRepo() bool {
    	// NB: simply checking the exit code of `git rev-parse --git-dir` would
    	// suffice here, but that requires deviating from the infrastructure
    	// provided by `run`.
    	gitDir := chomp(run(goroot, 0, "git", "rev-parse", "--git-dir"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	done := make(chan struct{})
    	errc := make(chan error, 1)
    	var wg sync.WaitGroup
    	wg.Add(1)
    	// We must wait for the waitgroup to exit before we terminate the cache or the server in prior defers.
    	defer wg.Wait()
    	// Call close first, so the goroutine knows to exit.
    	defer close(done)
    
    	go func() {
    		defer wg.Done()
    		for i := 0; i < 100; i++ {
    			select {
    			case <-done:
    				return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                if (!incomingEdge.isArtifactOnlyEdge()) {
                    return false;
                }
            }
            return true;
        }
    
        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
         * * Rescheduling any deferred selection impacted by a constraint coming from this node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top