Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for compared (0.41 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	case 56: /* floating point compare */
    		o1 = c.oprrr(p, p.As)
    
    		var rf int
    		if p.From.Type == obj.TYPE_FCONST {
    			o1 |= 8 /* zero */
    			rf = 0
    		} else {
    			rf = int(p.From.Reg)
    		}
    		rt := int(p.Reg)
    		o1 |= uint32(rf&31)<<16 | uint32(rt&31)<<5
    
    	case 57: /* floating point conditional compare */
    		o1 = c.oprrr(p, p.As)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    // is compatible with the proto package it is being compiled against.
    // A compilation error at this line likely means your copy of the
    // proto package needs to be updated.
    const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    				t.Fatalf("Unexpected second extension: got %v, want %v",
    					parsedCRL.Extensions[1], crlExt)
    			}
    
    			// With Go 1.19's updated RevocationList, we can now directly compare
    			// the RawSubject of the certificate to RawIssuer on the parsed CRL.
    			// However, this doesn't work with our hacked issuers above (that
    			// aren't parsed from a proper DER bundle but are instead manually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

     *  Docker 1.10.3 contains [backports provided by RedHat](https://github.com/docker/docker/compare/v1.10.3...runcom:docker-1.10.3-stable) for known issues
      * Docker versions as old as may 1.9.1 work with [known issues](CHANGELOG.md#191) but this is not guaranteed
    * rkt version 1.21.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	SBBQ    $3, acc2
    	CMOVQCS t0, acc0
    	CMOVQCS t1, acc1
    	CMOVQCS t2, acc2
    
    	// Add in the "s" part of the key
    	ADDQ 0+sStore, acc0
    	ADCQ 8+sStore, acc1
    
    	// Finally, constant time compare to the tag at the end of the message
    	XORQ    AX, AX
    	MOVQ    $1, DX
    	XORQ    (0*8)(inp), acc0
    	XORQ    (1*8)(inp), acc1
    	ORQ     acc1, acc0
    	CMOVQEQ DX, AX
    
    	// Return true iff tags are equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // ============================================================================
    // The following functions tests example quantization patterns outputted from
    // JAX Quantizer. JAX Quantizer should output integer types, which are
    // composed into `UniformQuantized{|PerAxis}Type` via
    // `compose_uniform_quantized_type_pass.cc`.
    // ============================================================================
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal_test.go

    			// Default to statusOk when missing any specific conditions
    			if tc.expectedConditions == nil {
    				tc.expectedConditions = statusOkWithOverrides()
    			}
    			// clear the message so that we can easily compare
    			for i := range actualConditions {
    				actualConditions[i].Message = ""
    				actualConditions[i].LastTransitionTime = metav1.Time{}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// Check the result after activation by the length of activeQ
    			if wantLen := len(tt.want); q.activeQ.Len() != wantLen {
    				t.Errorf("length compare: want %v, got %v", wantLen, q.activeQ.Len())
    			}
    
    			// Check if the specific pod exists in activeQ
    			for _, want := range tt.want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    // (one that we can compile).
    // v is known to be of the form "1.23".
    func allowedVersion(v string) bool {
    	// Special case: no requirement.
    	if v == "" {
    		return true
    	}
    	return gover.Compare(gover.Local(), v) >= 0
    }
    
    const (
    	needBuild uint32 = 1 << iota
    	needCgoHdr
    	needVet
    	needCompiledGoFiles
    	needCovMetaFile
    	needStale
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    			if table.n > 0 {
    				if DeepEqual(vnot.Interface(), v.Interface()) {
    					t.Errorf(
    						"arrays (%#v) compare ok (but should not)",
    						v.Interface(),
    					)
    				}
    			}
    			if !DeepEqual(vok.Interface(), v.Interface()) {
    				t.Errorf(
    					"arrays (%#v) compare NOT-ok (but should)",
    					v.Interface(),
    				)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top