Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for stsr (0.11 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	ST3:       "ST3",
    	ST4:       "ST4",
    	STLR:      "STLR",
    	STLRB:     "STLRB",
    	STLRH:     "STLRH",
    	STLXP:     "STLXP",
    	STLXR:     "STLXR",
    	STLXRB:    "STLXRB",
    	STLXRH:    "STLXRH",
    	STNP:      "STNP",
    	STP:       "STP",
    	STR:       "STR",
    	STRB:      "STRB",
    	STRH:      "STRH",
    	STTR:      "STTR",
    	STTRB:     "STTRB",
    	STTRH:     "STTRH",
    	STUR:      "STUR",
    	STURB:     "STURB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"STUR (SIMD&FP)","Bits":"10:2|1|1|1|1|0|0|00:2|0|imm9:9|0|0|Rn:5|Rt:5","Arch":"32-bit variant","Syntax":"STUR <St>, [<Xn|SP>{, #<simm>}]","Code":"","Alias":""},
    {"Name":"STUR (SIMD&FP)","Bits":"11:2|1|1|1|1|0|0|00:2|0|imm9:9|0|0|Rn:5|Rt:5","Arch":"64-bit variant","Syntax":"STUR <Dt>, [<Xn|SP>{, #<simm>}]","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&SquareSuperset;":                  "\u2290",
    	"&SquareSupersetEqual;":             "\u2292",
    	"&SquareUnion;":                     "\u2294",
    	"&Sscr;":                            "\U0001d4ae",
    	"&Star;":                            "\u22c6",
    	"&Sub;":                             "\u22d0",
    	"&Subset;":                          "\u22d0",
    	"&SubsetEqual;":                     "\u2286",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	dir, _ := filepath.Split(a.Target)
    	if dir != "" {
    		if err := sh.Mkdir(dir); err != nil {
    			return err
    		}
    	}
    
    	gofiles := str.StringList(p.GoFiles)
    	cgofiles := str.StringList(p.CgoFiles)
    	cfiles := str.StringList(p.CFiles)
    	sfiles := str.StringList(p.SFiles)
    	cxxfiles := str.StringList(p.CXXFiles)
    	var objects, cgoObjects, pcCFLAGS, pcLDFLAGS []string
    
    	if p.UsesCgo() || p.UsesSwig() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/html/entity.go

    		"SquareSuperset;":                  '\U00002290',
    		"SquareSupersetEqual;":             '\U00002292',
    		"SquareUnion;":                     '\U00002294',
    		"Sscr;":                            '\U0001D4AE',
    		"Star;":                            '\U000022C6',
    		"Sub;":                             '\U000022D0',
    		"Subset;":                          '\U000022D0',
    		"SubsetEqual;":                     '\U00002286',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}
              {{- if .Values.global.sts.servicePort }}
                - --stsPort={{ .Values.global.sts.servicePort }}
              {{- end }}
              {{- if .Values.global.logAsJson }}
                - --log_as_json
              {{- end }}
              {{- if .Values.global.proxy.lifecycle }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        for (auto attr : op.getDisabledChecks().getAsRange<StringAttr>()) {
          disabled_checks.push_back(attr.getValue().str());
        }
        std::vector<std::string> platforms;
        for (auto attr : op.getPlatforms().getAsRange<StringAttr>()) {
          platforms.push_back(attr.getValue().str());
        }
    
        // It is a terrible idea to have local MLIR contexts so we need to
        // register extensions here, again.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	}
    	sdata.SetLocal(true)
    	sdata.SetType(sym.SRODATA)
    	sdata.SetSize(int64(len(str)))
    	sdata.SetData([]byte(str))
    	s.AddAddr(ctxt.Arch, sdata.Sym())
    	s.AddUint(ctxt.Arch, uint64(len(str)))
    }
    
    func addinitarrdata(ctxt *Link, ldr *loader.Loader, s loader.Sym) {
    	p := ldr.SymName(s) + ".ptr"
    	sp := ldr.CreateSymForUpdate(p, 0)
    	sp.SetType(sym.SINITARR)
    	sp.SetSize(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    spot
    
    // srl : 2015-05-07 InterNetX, Corp
    srl
    
    // stada : 2014-11-13 STADA Arzneimittel AG
    stada
    
    // staples : 2015-07-30 Staples, Inc.
    staples
    
    // star : 2015-01-08 Star India Private Limited
    star
    
    // statebank : 2015-03-12 STATE BANK OF INDIA
    statebank
    
    // statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company
    statefarm
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (AtomicLoad64  ...) => (LDAR  ...)
    (AtomicLoadPtr ...) => (LDAR  ...)
    
    (AtomicStore8       ...) => (STLRB ...)
    (AtomicStore32      ...) => (STLRW ...)
    (AtomicStore64      ...) => (STLR  ...)
    (AtomicStorePtrNoWB ...) => (STLR  ...)
    
    (AtomicExchange(32|64)       ...) => (LoweredAtomicExchange(32|64) ...)
    (AtomicAdd(32|64)            ...) => (LoweredAtomicAdd(32|64)      ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top