Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 658 for programs (0.21 sec)

  1. src/runtime/runtime1.go

    	// The value can change at any time (in response to os.Setenv("GODEBUG"))
    	// and affects all extant timer channels immediately.
    	// Programs wouldn't normally change over an execution,
    	// but allowing it is convenient for testing and for programs
    	// that do an os.Setenv in main.init or main.main.
    	asynctimerchan atomic.Int32
    }
    
    var dbgvars = []*dbgVar{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    programs that use cgo (as described below). If the linker sees a file
    named dynimportfail it reports an error if it has been told to use
    internal linking mode. This approach is taken because generating
    _cgo_import.go requires doing a full C link of the package, which can
    fail for reasons that are irrelevant when using external linking mode.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. 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)
  4. src/net/error_test.go

    		return nil
    	}
    
    	// Because historically we have not exported the error that we
    	// return for an operation on a closed network connection,
    	// there are programs that test for the exact error string.
    	// Verify that string here so that we don't break those
    	// programs unexpectedly. See issues #4373 and #19252.
    	want := "use of closed network connection"
    	if !isShutdown && !strings.Contains(nestedErr.Error(), want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. cni/pkg/repair/repaircontroller.go

    func redirectRunningPod(pod *corev1.Pod, netns string) error {
    	pi := plugin.ExtractPodInfo(pod)
    	redirect, err := plugin.NewRedirect(pi)
    	if err != nil {
    		return fmt.Errorf("setup redirect: %v", err)
    	}
    	rulesMgr := plugin.IptablesInterceptRuleMgr()
    	if err := rulesMgr.Program(pod.Name, netns, redirect); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top