Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for NOR (0.03 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			ld = ppc64.ALWAR
    			st = ppc64.ASTWCCC
    		}
    		r0 := v.Args[0].Reg()
    		r1 := v.Args[1].Reg()
    		// LWSYNC - Assuming shared data not write-through-required nor
    		// caching-inhibited. See Appendix B.2.2.2 in the ISA 2.07b.
    		plwsync := s.Prog(ppc64.ALWSYNC)
    		plwsync.To.Type = obj.TYPE_NONE
    		// LBAR or LWAR
    		p := s.Prog(ld)
    		p.From.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	}
    	errMsg := "invalid object metric source: neither a value target nor an average value target was set"
    	err = fmt.Errorf(errMsg)
    	condition = a.getUnableComputeReplicaCountCondition(hpa, "FailedGetObjectMetric", err)
    	return 0, time.Time{}, "", condition, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. 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)
  4. src/crypto/tls/common.go

    // slice as defined in RFC 5705. If context is nil, it is not used as part of
    // the seed. If the connection was set to allow renegotiation via
    // Config.Renegotiation, or if the connections supports neither TLS 1.3 nor
    // Extended Master Secret, this function will return an error.
    //
    // Exporting key material without Extended Master Secret or TLS 1.3 was disabled
    // in Go 1.22 due to security issues (see the Security Considerations sections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/asm/internal/asm/testdata/ppc64.s

    	NAND R3, R4, R5                 // 7c851bb8
    	NANDCC R3, R4, R5               // 7c851bb9
    	EQV R3, R4, R5                  // 7c851a38
    	EQVCC R3, R4, R5                // 7c851a39
    	NOR R3, R4, R5                  // 7c8518f8
    	NORCC R3, R4, R5                // 7c8518f9
    
    	SUB R3, R4                      // 7c832050
    	SUB R3, R4, R5                  // 7ca32050
    	SUBC R3, R4                     // 7c832010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        rewriter.eraseOp(input_uniform_quantize_call_pattern->GetCallOp());
      }
    
      // Quantization dimension corresponds to the output feature dimension, i.e.
      // not contracted nor batched.
      int64_t GetFilterQuantizationDimension(
          const stablehlo::DotDimensionNumbersAttr& dot_dimension_numbers,
          const int64_t filter_rank) const {
        // Register all dimensions as candidates.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        /**
         * Sets the handler that can accept cookies from incoming HTTP responses and provides cookies to
         * outgoing HTTP requests.
         *
         * If unset, [no cookies][CookieJar.NO_COOKIES] will be accepted nor provided.
         */
        fun cookieJar(cookieJar: CookieJar) =
          apply {
            this.cookieJar = cookieJar
          }
    
        /** Sets the response cache to be used to read and write cached responses. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top