Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for exit2 (0.04 sec)

  1. 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)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * ```java
     * client.dispatcher().executorService().shutdown();
     * ```
     *
     * Clear the connection pool with [evictAll()][ConnectionPool.evictAll]. Note that the connection
     * pool's daemon thread may not exit immediately.
     *
     * ```java
     * client.connectionPool().evictAll();
     * ```
     *
     * If your client has a cache, call [close()][Cache.close]. Note that it is an error to create calls
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. src/cmd/compile/internal/ssa/regalloc.go

    	spill             *Value  // spilled copy of the Value (if any)
    	restoreMin        int32   // minimum of all restores' blocks' sdom.entry
    	restoreMax        int32   // maximum of all restores' blocks' sdom.exit
    	needReg           bool    // cached value of !v.Type.IsMemory() && !v.Type.IsVoid() && !.v.Type.IsFlags()
    	rematerializeable bool    // cached value of v.rematerializeable()
    }
    
    type regState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return setgroups(len(a), &a[0])
    }
    
    type WaitStatus uint32
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits. At least that's the idea.
    // There are various irregularities. For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    //go:cgo_import_dynamic libc_dup3 dup3 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Exit(code int) {
    	syscall_syscall(libc_exit_trampoline_addr, uintptr(code), 0, 0)
    	return
    }
    
    var libc_exit_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_exit exit "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top