Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Bad (0.04 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    		goto putrelv
    	}
    
    	goto bad
    
    putrelv:
    	if rel.Siz != 0 {
    		if rel.Siz != 4 {
    			ctxt.Diag("bad rel")
    			goto bad
    		}
    
    		r := obj.Addrel(cursym)
    		*r = rel
    		r.Off = int32(p.Pc + int64(ab.Len()))
    	}
    
    	ab.PutInt32(v)
    	return
    
    bad:
    	ctxt.Diag("asmand: bad address %v", obj.Dconv(p, a))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	bad(func() { clear(v.Field(2).Field(1)) })          // .T2.namedT0
    	bad(func() { clear(v.Field(2).Field(1).Field(0)) }) // .T2.namedT0.W
    	bad(func() { clear(v.Field(3)) })                   // .NamedT1
    	bad(func() { clear(v.Field(3).Field(0)) })          // .NamedT1.Y
    	bad(func() { clear(v.Field(3).Field(1)) })          // .NamedT1.t0
    	bad(func() { clear(v.Field(3).Field(1).Field(0)) }) // .NamedT1.t0.W
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		if r == obj.REG_NONE {
    			r = o.param
    		}
    
    		v := c.regoff(&p.To)
    		if v >= -256 && v <= 256 {
    			c.ctxt.Diag("%v: bad type for offset %d (should be 9 bit signed immediate store)", p, v)
    		}
    		if v >= 0 && v <= 4095 && v&((1<<int32(s))-1) == 0 {
    			c.ctxt.Diag("%v: bad type for offset %d (should be 12 bit unsigned immediate store)", p, v)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    			//    |         |
    			//    |  +---+  |
    			//    +->| B |<-+
    			//       +---+
    			//         |
    			//         v
    			//       +----+
    			//       | EE |
    			//       +----+
    			name: "bad EKU",
    			graph: trustGraphDescription{
    				Roots: []rootDescription{{Subject: "root"}},
    				Leaf:  "leaf",
    				Graph: []trustGraphEdge{
    					{
    						Issuer:  "root",
    						Subject: "inter a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// CPU time by the caller.
    	stoppingCPUTime := int64(0)
    	bad := ""
    	if sched.stopwait != 0 {
    		bad = "stopTheWorld: not stopped (stopwait != 0)"
    	} else {
    		for _, pp := range allp {
    			if pp.status != _Pgcstop {
    				bad = "stopTheWorld: not stopped (status != _Pgcstop)"
    			}
    			if pp.gcStopTime == 0 && bad == "" {
    				bad = "stopTheWorld: broken CPU time accounting"
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    		dc.stickyBad = true
    		return nil
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	c.Close()
    
    	if len(db.freeConn) > 0 && db.freeConn[0].ci.(*fakeConn).stickyBad {
    		t.Fatal("bad connection returned to pool; expected bad connection to be discarded")
    	}
    }
    
    // Tests fix for issue 2542, that we release a lock when querying on
    // a closed connection.
    func TestIssue2542Deadlock(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    // only be called with the same opcodes as are handled by opstore and opload.
    func (c *ctxt9) opform(insn uint32) int {
    	switch insn {
    	default:
    		c.ctxt.Diag("bad insn in loadform: %x", insn)
    	case OPVCC(58, 0, 0, 0), // ld
    		OPVCC(58, 0, 0, 1),        // ldu
    		OPVCC(58, 0, 0, 0) | 1<<1, // lwa
    		OPVCC(62, 0, 0, 0),        // std
    		OPVCC(62, 0, 0, 1):        //stdu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		query              string
    		xNoSemicolons      string
    		xWithSemicolons    string
    		expectParseFormErr bool
    	}{
    		{"?a=1;x=bad&x=good", "good", "bad", true},
    		{"?a=1;b=bad&x=good", "good", "good", true},
    		{"?a=1%3Bx=bad&x=good%3B", "good;", "good;", false},
    		{"?a=1;x=good;x=bad", "", "good", true},
    	}
    
    	run(t, func(t *testing.T, mode testMode) {
    		for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Errorf("error parsing: %s", err)
    		return
    	}
    	numCerts := len(certList.TBSCertList.RevokedCertificates)
    	expected := 88
    	if numCerts != expected {
    		t.Errorf("bad number of revoked certificates. got: %d want: %d", numCerts, expected)
    	}
    
    	if certList.HasExpired(time.Unix(1302517272, 0)) {
    		t.Errorf("CRL has expired (but shouldn't have)")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    				rv = sym.RV_390_DBL
    			case objabi.R_CALL:
    				rv = sym.RV_390_DBL
    			}
    		}
    
    		var o int64
    		switch rt {
    		default:
    			switch siz {
    			default:
    				st.err.Errorf(s, "bad reloc size %#x for %s", uint32(siz), ldr.SymName(rs))
    			case 1:
    				o = int64(P[off])
    			case 2:
    				o = int64(target.Arch.ByteOrder.Uint16(P[off:]))
    			case 4:
    				o = int64(target.Arch.ByteOrder.Uint32(P[off:]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top