Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for _logf (0.06 sec)

  1. src/reflect/all_test.go

    						tocopy, i, a[i], i, b[i], i, c[i])
    				} else {
    					t.Errorf("(iii) tocopy=%d b[%d]=%d, c[%d]=%d",
    						tocopy, i, b[i], i, c[i])
    				}
    			} else {
    				t.Logf("tocopy=%d elem %d is okay\n", tocopy, i)
    			}
    		}
    	}
    }
    
    func TestCopyString(t *testing.T) {
    	t.Run("Slice", func(t *testing.T) {
    		s := bytes.Repeat([]byte{'_'}, 8)
    		val := ValueOf(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	    If d is 0, the timeout is disabled.
    //	    The default is 10 minutes (10m).
    //
    //	-v
    //	    Verbose output: log all tests as they are run. Also print all
    //	    text from Log and Logf calls even if the test succeeds.
    //
    //	-vet list
    //	    Configure the invocation of "go vet" during "go test"
    //	    to use the comma-separated list of vet checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    /*
     * load a literal value into dr
     */
    func (c *ctxt7) omovlit(as obj.As, p *obj.Prog, a *obj.Addr, dr int) uint32 {
    	var o1 int32
    	if p.Pool == nil { /* not in literal pool */
    		c.aclass(a)
    		c.ctxt.Logf("omovlit add %d (%#x)\n", c.instoffset, uint64(c.instoffset))
    
    		/* TODO: could be clever, and use general constant builder */
    		o1 = int32(c.opirr(p, AADD))
    
    		v := int32(c.instoffset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top