Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for light (0.04 sec)

  1. src/syscall/syscall_windows.go

    	// a win32finddata1, and then copy the results out.
    	// There is no loss of expressivity here, because the final
    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    	// For Go 1.1, we might avoid the allocation of win32finddata1 here
    	// by adding a final Bug [2]uint16 field to the struct and then
    	// adjusting the fields in the result directly.
    	var data1 win32finddata1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		if !ok {
    			t.Fatalf("got %T, not metav1.Object", actualEvent.Object)
    		}
    		if err := validateResourceVersion(obj.GetResourceVersion()); err != nil {
    			t.Fatal(err)
    		}
    
    		// then, check that we have the right type and content
    		pod, ok := actualEvent.Object.(*example.Pod)
    		if !ok {
    			t.Fatalf("got %T, not *example.Pod", actualEvent.Object)
    		}
    		pod.ResourceVersion = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/runtime/map.go

    // return the keys in walk order (bucket #, then overflow
    // chain order, then bucket index).  To maintain iteration
    // semantics, we never move keys within their bucket (if
    // we did, keys might be returned 0 or 2 times).  When
    // growing the table, iterators remain iterating through the
    // old table and must check the new table if the bucket
    // they are iterating through has been moved ("evacuated")
    // to the new table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/time/time_test.go

    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    // The time routines provide no way to get absolute time
    // (seconds since zero), but we need it to compute the right
    // answer for bizarre roundings like "to the nearest 3 ns".
    // Compute as t - year1 = (t - 1970) + (1970 - 2001) + (2001 - 1).
    // t - 1970 is returned by Unix and Nanosecond.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	for idx, podSandboxID := range podSandboxIDs {
    		resp, err := m.runtimeService.PodSandboxStatus(ctx, podSandboxID, false)
    		// Between List (getSandboxIDByPodUID) and check (PodSandboxStatus) another thread might remove a container, and that is normal.
    		// The previous call (getSandboxIDByPodUID) never fails due to a pod sandbox not existing.
    		// Therefore, this method should not either, but instead act as if the previous call failed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	// a win32finddata1, and then copy the results out.
    	// There is no loss of expressivity here, because the final
    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    	// For Go 1.1, we might avoid the allocation of win32finddata1 here
    	// by adding a final Bug [2]uint16 field to the struct and then
    	// adjusting the fields in the result directly.
    	var data1 win32finddata1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// '*/*' means all resources and their subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    	// overlap with each other.
    	//
    	// Depending on the enclosing object, subresources might not be allowed.
    	// Required.
    	// +listType=atomic
    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    
    	// scope specifies the scope of this rule.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	// unnamespacedRawAlias is like rawAlias but without namespaces.
    	// This is because an `ExternalName` isn't namespaced. If there is a conflict, the behavior is undefined.
    	// This is split from above as a minor optimization to right-size the map
    	unnamespacedRawAlias := make(map[host.Name]host.Name, len(rawAlias))
    	for k, v := range rawAlias {
    		unnamespacedRawAlias[k.Hostname] = v
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // multiple object files.
    func (l *Loader) AttrDuplicateOK(i Sym) bool {
    	if !l.IsExternal(i) {
    		// TODO: if this path winds up being taken frequently, it
    		// might make more sense to copy the flag value out of the object
    		// into a larger bitmap during preload.
    		r, li := l.toLocal(i)
    		return r.Sym(li).Dupok()
    	}
    	return l.attrDuplicateOK.Has(l.extIndex(i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/reflect/type.go

    		return true
    
    	case Interface:
    		t := (*interfaceType)(unsafe.Pointer(T))
    		v := (*interfaceType)(unsafe.Pointer(V))
    		if len(t.Methods) == 0 && len(v.Methods) == 0 {
    			return true
    		}
    		// Might have the same methods but still
    		// need a run time conversion.
    		return false
    
    	case Map:
    		return haveIdenticalType(T.Key(), V.Key(), cmpTags) && haveIdenticalType(T.Elem(), V.Elem(), cmpTags)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top