Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,034 for programs (0.21 sec)

  1. src/syscall/exec_unix.go

    // accidentally inherits the write end of a pipe, then the reader
    // of that pipe will not see EOF until that child exits, potentially
    // causing the parent program to hang. This is a common problem
    // in threaded C programs that use popen.
    //
    // Luckily, the file descriptors that are most important not to
    // inherit are not the ones that can take an arbitrarily long time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    ---
    
    Then the next concepts to consider are all about the program running your actual API (e.g. Uvicorn).
    
    ## Program and Process
    
    We will talk a lot about the running "**process**", so it's useful to have clarity about what it means, and what's the difference with the word "**program**".
    
    ### What is a Program
    
    The word **program** is commonly used to describe many things:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	return counter.EncodeStack(pcs, prefix), nil
    }
    
    // parseStackPCs parses the parent process's program counters for the
    // first running goroutine out of a GOTRACEBACK=system traceback,
    // adjusting them so that they are valid for the child process's text
    // segment.
    //
    // This function returns only program counter values, ensuring that
    // there is no possibility of strings from the crash report (which may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/log/config.go

    //
    // The package provides direct integration with the Cobra command-line processor which makes it
    // easy to build programs that use a consistent interface for logging. Here's an example
    // of a simple Cobra-based program using this log package:
    //
    //			func main() {
    //				// get the default logging options
    //				options := log.DefaultOptions()
    //
    //				rootCmd := &cobra.Command{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/runtime/panic.go

    			panic("Bad varint")
    		}
    	}
    }
    
    // A PanicNilError happens when code calls panic(nil).
    //
    // Before Go 1.21, programs that called panic(nil) observed recover returning nil.
    // Starting in Go 1.21, programs that call panic(nil) observe recover returning a *PanicNilError.
    // Programs can change back to the old behavior by setting GODEBUG=panicnil=1.
    type PanicNilError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. src/os/types_windows.go

    			// of persistent data, and they shouldn't add unexpected latency or
    			// unavailability in the way that a network filesystem might.
    			//
    			// Go programs may use ModeIrregular to filter out unusual files (such as
    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    			// to avoid files changing unpredictably from regular to irregular we will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/syscall/fs_wasip1.go

    	// this condition here.
    	if len(buf) == 0 {
    		buf = append(buf, '.')
    	}
    	// If the file ended with a '/' we make sure that the output also ends
    	// with a '/'. This is needed to ensure that programs have a mechanism
    	// to represent dereferencing symbolic links pointing to directories.
    	if buf[len(buf)-1] != '/' && isDir(file) {
    		buf = append(buf, '/')
    	}
    	return unsafe.String(&buf[0], len(buf))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. src/net/http/pprof/pprof.go

    //
    // Or to look at the goroutine blocking profile, after calling
    // [runtime.SetBlockProfileRate] in your program:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/block
    //
    // Or to look at the holders of contended mutexes, after calling
    // [runtime.SetMutexProfileFraction] in your program:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/mutex
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    on the pattern syntax.
    
    Second, if you are compiling a Go program not in a work space,
    you can use a relative path in an import statement in that program
    to refer to nearby code also not in a work space.
    This makes it easy to experiment with small multipackage programs
    outside of the usual work spaces, but such programs cannot be
    installed with "go install" (there is no work space in which to install them),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/plugin_test.go

    		}
    	}
    
    	return string(bytes.TrimSpace(out))
    }
    
    func TestDWARFSections(t *testing.T) {
    	// test that DWARF sections are emitted for plugins and programs importing "plugin"
    	globalSkip(t)
    	goCmd(t, "run", "./checkdwarf/main.go", "plugin2.so", "plugin2.UnexportedNameReuse")
    	goCmd(t, "run", "./checkdwarf/main.go", "./host.exe", "main.main")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top