Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NOR (0.36 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Neg(64|32|16|8) ...) => (NEG ...)
    (Neg(64|32)F ...) => (FNEG ...)
    
    (Com(64|32|16|8) x) => (NOR x x)
    
    // Lowering boolean ops
    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    (Not x) => (XORconst [1] x)
    
    // Merge logical operations
    (AND x (NOR y y)) => (ANDN x y)
    (OR x (NOR y y)) => (ORN x y)
    
    // Lowering comparisons
    (EqB x y)  => (ANDconst [1] (EQV x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    				if tc.allowedEver {
    					t.Errorf("Pod should be allowed ever")
    				} else {
    					t.Errorf("Pod should not be allowed ever")
    				}
    			}
    
    			// if maps are neither nil nor empty
    			if len(podWorkers.startedStaticPodsByFullname) != 0 ||
    				len(podWorkers.startedStaticPodsByFullname) != len(tc.expectedStartedStaticPodsByFullname) {
    				if !reflect.DeepEqual(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    // that is neither present in the standard library nor in any module in the
    // build list.
    func (r *resolver) loadPackages(ctx context.Context, patterns []string, findPackage func(ctx context.Context, path string, m module.Version) (versionOk bool)) {
    	opts := modload.PackageOpts{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    					Controller: ptr.To(true),
    				},
    			},
    			// The missing UID is interpreted as an unexpected stale reference.
    			expectedRefs: []metav1.OwnerReference{},
    		},
    		{
    			name: "neither controller nor UID",
    			originalRefs: []metav1.OwnerReference{
    				{
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					Name:       "sts",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    //   [DONE] Lack of tests originally - added TestDeleteWithSuggestion.
    // - https://github.com/kubernetes/kubernetes/pull/40664
    //   [DONE] Irrelevant for delete, as Delete doesn't write data (nor compare it).
    // - https://github.com/kubernetes/kubernetes/pull/47703
    //   [DONE] Irrelevant for delete, because Delete doesn't persist data.
    // - https://github.com/kubernetes/kubernetes/pull/48394/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top