Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for urlopen (0.14 sec)

  1. src/database/sql/sql_test.go

    	defer func() { setHookOpenErr(nil) }()
    
    	errs := make(chan error, tryOpen)
    
    	var opening sync.WaitGroup
    	opening.Add(tryOpen)
    
    	setHookOpenErr(func() error {
    		// Wait for all connections to enqueue.
    		opening.Wait()
    		return errOffline
    	})
    
    	for i := 0; i < tryOpen; i++ {
    		go func() {
    			opening.Done() // signal one connection is in flight
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	// Indicates that this object's initialization section be run before any other
    	// objects loaded.
    	DF_1_INITFIRST DynFlag1 = 0x00000020
    	// Indicates that the object cannot be added to a running process with dlopen.
    	DF_1_NOOPEN DynFlag1 = 0x00000040
    	// Indicates the object requires $ORIGIN processing.
    	DF_1_ORIGIN DynFlag1 = 0x00000080
    	// Indicates that the object should use direct binding information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// container log manager must start after container runtime is up to retrieve information from container runtime
    	// and inform container to reopen log file after log rotation.
    	kl.containerLogManager.Start()
    	// Adding Registration Callback function for CSI Driver
    	kl.pluginManager.AddHandler(pluginwatcherapi.CSIPlugin, plugincache.PluginHandler(csi.PluginHandler))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top