Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 620 for light (0.04 sec)

  1. src/runtime/mpagealloc.go

    	// summary at this level, meaning if we just do the obvious computation
    	// hi will end up being an inclusive upper bound. Unfortunately, just
    	// adding 1 to that is too broad since we might be on the very edge
    	// of a summary's max page count boundary for this level
    	// (1 << levelLogPages[level]). So, make limit an inclusive upper bound
    	// then shift, then add 1, so we get an exclusive upper bound at the end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    			return false
    		}
    	}
    
    	// DefaultLit is necessary for non-constants too: n might be 1.1<<k.
    	// TODO(gri) The length argument requirements for (array/slice) make
    	// are the same as for index expressions. Factor the code better;
    	// for instance, indexlit might be called here and incorporate some
    	// of the bounds checks done for make.
    	n = DefaultLit(n, types.Types[types.TINT])
    	*np = n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_executor.go

    	// If any volume is not attached right now, it will update the actual state of the world to reflect that.
    	// Note that this operation could be operated concurrently with other attach/detach operations.
    	// In theory (but very unlikely in practise), race condition among these operations might mark volume as detached
    	// even if it is attached. But reconciler can correct this in a short period of time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pilot/pkg/status/distribution/reporter.go

    	}
    	// for every resource in flight
    	for _, ipr := range r.inProgressResources {
    		res := ipr.Resource
    		key := res.String()
    		// for every version (nonce) of the config currently in play
    		for nonce, dataplanes := range r.reverseStatus {
    
    			// check to see if this version of the config contains this version of the resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    // implementation.
    func implementsInterface(typ, gobEncDecType reflect.Type) (success bool, indir int8) {
    	if typ == nil {
    		return
    	}
    	rt := typ
    	// The type might be a pointer and we need to keep
    	// dereferencing to the base type until we find an implementation.
    	for {
    		if rt.Implements(gobEncDecType) {
    			return true, indir
    		}
    		if p := rt; p.Kind() == reflect.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows.go

    	// retOffset is the offset of the uintptr-sized result in the Go
    	// frame.
    	retOffset uintptr
    }
    
    func (p *abiDesc) assignArg(t *_type) {
    	if t.Size_ > goarch.PtrSize {
    		// We don't support this right now. In
    		// stdcall/cdecl, 64-bit ints and doubles are
    		// passed as two words (little endian); and
    		// structs are pushed on the stack. In
    		// fastcall, arguments larger than the word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/kubeinject.go

    			"Use --meshConfigFile or re-run "+command+" with `-i <istioSystemNamespace> and ensure valid MeshConfig exists",
    			meshConfigMapName, ctx.IstioNamespace(), err)
    	}
    	// values in the data are strings, while proto might use a
    	// different data type.  therefore, we have to get a value by a
    	// key
    	configYaml, exists := meshConfigMap.Data[configMapKey]
    	if !exists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. callbacks/preload.go

    		names = append(names, embeddedValues(relations)...)
    	}
    	return names
    }
    
    // preloadEntryPoint enters layer by layer. It will call real preload if it finds the right entry point.
    // If the current relationship is embedded or joined, current query will be ignored.
    //
    //nolint:cyclop
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/inl_test.go

    		t.Skip("skipping in short mode")
    	}
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	// want is the list of function names (by package) that should
    	// be inlinable. If they have no callers in their packages, they
    	// might not actually be inlined anywhere.
    	want := map[string][]string{
    		"runtime": {
    			"add",
    			"acquirem",
    			"add1",
    			"addb",
    			"adjustpanics",
    			"adjustpointer",
    			"alignDown",
    			"alignUp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/node_container_manager_linux.go

    	nodeRef := nodeRefFromNode(cm.nodeInfo.Name)
    
    	// If Node Allocatable is enforced on a node that has not been drained or is updated on an existing node to a lower value,
    	// existing memory usage across pods might be higher than current Node Allocatable Memory Limits.
    	// Pod Evictions are expected to bring down memory usage to below Node Allocatable limits.
    	// Until evictions happen retry cgroup updates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top