Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 619 for light (0.04 sec)

  1. src/runtime/map_fast64.go

    						typedmemmove(t.Key, dst.k, k)
    					}
    				} else {
    					*(*uint64)(dst.k) = *(*uint64)(k)
    				}
    
    				typedmemmove(t.Elem, dst.e, e)
    				dst.i++
    				// These updates might push these pointers past the end of the
    				// key or elem arrays.  That's ok, as we have the overflow pointer
    				// at the end of the bucket to protect against pointing past the
    				// end of the bucket.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/log/slog/logger_test.go

    	check(`level=INFO msg=info a.i=1`)
    }
    
    func TestConnections(t *testing.T) {
    	var logbuf, slogbuf bytes.Buffer
    
    	// Revert any changes to the default logger. This is important because other
    	// tests might change the default logger using SetDefault. Also ensure we
    	// restore the default logger at the end of the test.
    	currentLogger := Default()
    	currentLogWriter := log.Writer()
    	currentLogFlags := log.Flags()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. pkg/util/iptree/iptree.go

    	for bitPosition < mask {
    		// Look for a child checking the bit position after the mask
    		n = n.child[getBitFromAddr(address, bitPosition+1)]
    		if n == nil {
    			return zeroT, false
    		}
    		// check we are in the right branch comparing the suffixes
    		if !n.prefix.Contains(address) {
    			return zeroT, false
    		}
    		// update the new bit position with the new node mask
    		bitPosition = n.prefix.Bits()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  5. src/internal/trace/oldtrace.go

    }
    
    var errSkip = errors.New("skip event")
    
    // convertEvent converts an event from the old trace format to zero or more
    // events in the new format. Most events translate 1 to 1. Some events don't
    // result in an event right away, in which case convertEvent returns errSkip.
    // Some events result in more than one new event; in this case, convertEvent
    // returns the first event and stores additional events in it.extra. When
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/types.go

    	ClientConnection componentbaseconfig.ClientConnectionConfiguration
    
    	// DebuggingConfiguration holds configuration for Debugging related features
    	// TODO: We might wanna make this a substruct like Debugging componentbaseconfig.DebuggingConfiguration
    	componentbaseconfig.DebuggingConfiguration
    
    	// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/time/tick_test.go

    	Sleep(sched)
    	waitDone(done)
    	tim.Stop()
    	close(stop)
    	waitDone(done1)
    	waitDone(done2)
    	if isTicker {
    		// extra send might have sent done again
    		// (handled by buffering done above).
    		select {
    		default:
    		case <-done:
    		}
    		// extra send after that might have filled C.
    		select {
    		default:
    		case <-C:
    		}
    	}
    	notDone(done)
    
    	// Test enqueueTimerChan when timer is stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	// and the IP may be shared by many pods. Best we can do is guess.
    	pods := c.pods.getPodsByIP(ip)
    	for _, p := range pods {
    		if p.Namespace == namespace {
    			// Might not be right, but best we can do.
    			return p
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cfg/cfg.go

    	goroot := findGOROOT(envCache.m["GOROOT"])
    	if goroot != "" {
    		readEnvFile(filepath.Join(goroot, "go.env"), "GOROOT")
    	}
    
    	// Save the goroot for func init calling SetGOROOT,
    	// and also overwrite anything that might have been in go.env.
    	// It makes no sense for GOROOT/go.env to specify
    	// a different GOROOT.
    	envCache.m["GOROOT"] = goroot
    }
    
    func readEnvFile(file string, source string) {
    	if file == "" {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_FPC                  = 32  // Floating point control register
    	PT_PSW                  = 40  // PSW
    	PT_PSW0                 = 40  // Left half of the PSW
    	PT_PSW1                 = 41  // Right half of the PSW
    	PT_CR0                  = 42  // Control register 0
    	PT_CR1                  = 43  // Control register 1
    	PT_CR2                  = 44  // Control register 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top