Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for stsr (0.06 sec)

  1. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⊐":                  "\u2290",
    	"⊒":             "\u2292",
    	"⊔":                     "\u2294",
    	"𝒮":                            "\U0001d4ae",
    	"⋆":                            "\u22c6",
    	"⋐":                             "\u22d0",
    	"⋐":                          "\u22d0",
    	"⊆":                     "\u2286",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"standing_man":                         "\U0001f9cd\u200d\u2642\ufe0f",
    	"standing_person":                      "\U0001f9cd",
    	"standing_woman":                       "\U0001f9cd\u200d\u2640\ufe0f",
    	"star":                                 "\u2b50",
    	"star2":                                "\U0001f31f",
    	"star_and_crescent":                    "\u262a\ufe0f",
    	"star_of_david":                        "\u2721\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	_, err := ParseCertificate(block.Bytes)
    	if err == nil {
    		t.Fatal("unexpected success")
    	}
    
    	const expected = "empty name constraints"
    	if str := err.Error(); !strings.Contains(str, expected) {
    		t.Errorf("expected %q in error but got %q", expected, str)
    	}
    }
    
    func TestPKIXNameString(t *testing.T) {
    	der, err := base64.StdEncoding.DecodeString(certBytes)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	s := fmt.Sprint(v.Interface())
    	want := `{ 1 0 [0 0 0]}`
    	if s != want {
    		t.Errorf("constructed struct = %s, want %s", s, want)
    	}
    	const stStr = `struct { S string "s"; X uint8 "x"; Y uint64; Z [3]uint16 }`
    	if got, want := st.String(), stStr; got != want {
    		t.Errorf("StructOf(fields).String()=%q, want %q", got, want)
    	}
    
    	// check the size, alignment and field offsets
    	stt := TypeOf(struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    // Issue 18101.
    func TestTypedString(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	type Str string
    	var scanned Str
    
    	err := db.QueryRow("SELECT|people|name|name=?", "Alice").Scan(&scanned)
    	if err != nil {
    		t.Fatal(err)
    	}
    	expected := Str("Alice")
    	if scanned != expected {
    		t.Errorf("expected %+v, got %+v", expected, scanned)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. go.sum

    github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
    github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
    github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
    github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=
    github.com/go-logr/zapr v0.1.0/go.mod h1:tabnROwaDl0UNxkVeFRbY8bwB37GwRv0P8lg6aAiEnk=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top