Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 88 for aesctr (0.14 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	AAMOMINUW
    
    	// 10.1: Base Counters and Timers
    	ARDCYCLE
    	ARDCYCLEH
    	ARDTIME
    	ARDTIMEH
    	ARDINSTRET
    	ARDINSTRETH
    
    	// 11.2: Floating-Point Control and Status Register
    	AFRCSR
    	AFSCSR
    	AFRRM
    	AFSRM
    	AFRFLAGS
    	AFSFLAGS
    	AFSRMI
    	AFSFLAGSI
    
    	// 11.5: Single-Precision Load and Store Instructions
    	AFLW
    	AFSW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/net/http/httputil/reverseproxy.go

    func (p *ReverseProxy) flushInterval(res *http.Response) time.Duration {
    	resCT := res.Header.Get("Content-Type")
    
    	// For Server-Sent Events responses, flush immediately.
    	// The MIME type is defined in https://www.w3.org/TR/eventsource/#text-event-stream
    	if baseCT, _, _ := mime.ParseMediaType(resCT); baseCT == "text/event-stream" {
    		return -1 // negative means immediately
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.cc

        TF_ASSIGN_OR_RETURN(definition_event, stream->parent()->CreateEvent());
        TF_RETURN_IF_ERROR(stream->RecordEvent(definition_event.get()));
      }
    
      for (const XlaOutputDescription& descr : compilation_result->outputs) {
        if (descr.type == DT_VARIANT) {
          return errors::Unimplemented(
              "Support for TensorList crossing the XLA/TF boundary "
              "is not implemented");
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. src/runtime/iface_test.go

    		{name: "E16", fn: func() { e = zero16 }}, // zero values do not allocate
    		{name: "E32", fn: func() { e = zero32 }},
    		{name: "E64", fn: func() { e = zero64 }},
    		{name: "Estr", fn: func() { e = zerostr }},
    		{name: "Eslice", fn: func() { e = zeroslice }},
    		{name: "Econstflt", fn: func() { e = 99.0 }}, // constants do not allocate
    		{name: "Econststr", fn: func() { e = "change" }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. src/net/http/request_test.go

    				req.AddCookie(c)
    			}
    
    			got := req.CookiesNamed(tt.filter)
    
    			if !reflect.DeepEqual(got, tt.want) {
    				asStr := func(v any) string {
    					blob, _ := json.MarshalIndent(v, "", "  ")
    					return string(blob)
    				}
    				t.Fatalf("Result mismatch\n\tGot: %s\n\tWant: %s", asStr(got), asStr(tt.want))
    			}
    		})
    	}
    }
    
    const (
    	fileaContents = "This is a test file."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x4b, 0x0, 0x0, 0, 0x0}
    	case AFRCSR:
    		return &inst{0x73, 0x2, 0x3, 3, 0x0}
    	case AFRFLAGS:
    		return &inst{0x73, 0x2, 0x1, 1, 0x0}
    	case AFRRM:
    		return &inst{0x73, 0x2, 0x2, 2, 0x0}
    	case AFSCSR:
    		return &inst{0x73, 0x1, 0x3, 3, 0x0}
    	case AFSD:
    		return &inst{0x27, 0x3, 0x0, 0, 0x0}
    	case AFSFLAGS:
    		return &inst{0x73, 0x1, 0x1, 1, 0x0}
    	case AFSFLAGSI:
    		return &inst{0x73, 0x5, 0x1, 1, 0x0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    		} else {
    			errmsgs, out = partitionStrings(we.prefix, out)
    		}
    		if len(errmsgs) == 0 {
    			errs = append(errs, fmt.Errorf("%s:%d: missing error %q", we.file, we.lineNum, we.reStr))
    			continue
    		}
    		matched := false
    		n := len(out)
    		for _, errmsg := range errmsgs {
    			// Assume errmsg says "file:line: foo".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/encoding/xml/xml.go

    	escApos = []byte("'") // shorter than "'"
    	escAmp  = []byte("&")
    	escLT   = []byte("<")
    	escGT   = []byte(">")
    	escTab  = []byte("	")
    	escNL   = []byte("
")
    	escCR   = []byte("
")
    	escFFFD = []byte("\uFFFD") // Unicode replacement character
    )
    
    // EscapeText writes to w the properly escaped XML equivalent
    // of the plain text data s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/a.out.go

    	ACSINC
    	ACSINCW
    	ACSINV
    	ACSINVW
    	ACSNEG
    	ACSNEGW
    	ADC
    	ADCPS1
    	ADCPS2
    	ADCPS3
    	ADMB
    	ADRPS
    	ADSB
    	ADWORD
    	AEON
    	AEONW
    	AEOR
    	AEORW
    	AERET
    	AEXTR
    	AEXTRW
    	AFABSD
    	AFABSS
    	AFADDD
    	AFADDS
    	AFCCMPD
    	AFCCMPED
    	AFCCMPES
    	AFCCMPS
    	AFCMPD
    	AFCMPED
    	AFCMPES
    	AFCMPS
    	AFCSELD
    	AFCSELS
    	AFCVTDH
    	AFCVTDS
    	AFCVTHD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  10. src/syscall/types_windows.go

    	InUnknownProtos uint32
    	OutOctets       uint32
    	OutUcastPkts    uint32
    	OutNUcastPkts   uint32
    	OutDiscards     uint32
    	OutErrors       uint32
    	OutQLen         uint32
    	DescrLen        uint32
    	Descr           [MAXLEN_IFDESCR]byte
    }
    
    type CertInfo struct {
    	// Not implemented
    }
    
    type CertContext struct {
    	EncodingType uint32
    	EncodedCert  *byte
    	Length       uint32
    	CertInfo     *CertInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top