Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for foobody (0.16 sec)

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

    	wantNoneReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateRaw(ctxt *obj.Link, ins *instruction) {
    	// Treat the raw value specially as a 32-bit unsigned integer.
    	// Nobody wants to enter negative machine code.
    	if ins.imm < 0 || 1<<32 <= ins.imm {
    		ctxt.Diag("%v: immediate %d in raw position cannot be larger than 32 bits", ins.as, ins.imm)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			b = s.endBlock()
    			b.Kind = ssa.BlockIf
    			b.SetControl(cmp1)
    			b.AddEdgeTo(cacheHit)
    			b.AddEdgeTo(loopBody)
    
    			// Look for an empty entry, the tombstone for this hash table.
    			//   if e.Typ == nil { goto miss }
    			s.startBlock(loopBody)
    			cmp2 := s.newValue2(ssa.OpEqPtr, typs.Bool, eTyp, s.constNil(typs.BytePtr))
    			b = s.endBlock()
    			b.Kind = ssa.BlockIf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    // This lets rewindBody avoid an error result when the request
    // does not have GetBody but the body hasn't been read at all yet.
    func setupRewindBody(req *Request) *Request {
    	if req.Body == nil || req.Body == NoBody {
    		return req
    	}
    	newReq := *req
    	newReq.Body = &readTrackingBody{ReadCloser: req.Body}
    	return &newReq
    }
    
    // rewindBody returns a new request with the body rewound.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    // at the beginning of main).
    var MemProfileRate int = 512 * 1024
    
    // disableMemoryProfiling is set by the linker if runtime.MemProfile
    // is not used and the link type guarantees nobody else could use it
    // elsewhere.
    var disableMemoryProfiling bool
    
    // A MemProfileRecord describes the live objects allocated
    // by a particular call sequence (stack trace).
    type MemProfileRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // the loop body but still consider them candidates.
        //
        // LoopCond ->
        // Merge    -> Switch -> Identity -> i++ -> ... -> NextIteration
        //                               ..> Const -> LoopBody
        //                            (control edge)
        TF_ASSIGN_OR_RETURN(bool is_identity_driving_consts_in_loop,
                            IsIdentityDrivingConstsInLoop(node));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	}
    }
    
    // requestBodyRemains reports whether future calls to Read
    // on rc might yield more data.
    func requestBodyRemains(rc io.ReadCloser) bool {
    	if rc == NoBody {
    		return false
    	}
    	switch v := rc.(type) {
    	case *expectContinueReader:
    		return requestBodyRemains(v.readCloser)
    	case *body:
    		return v.bodyRemains()
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    			"Connection: close\r\n\r\nUnsupported transfer encoding")
    
    		if string(gotBody) != wantBody {
    			t.Errorf("%q. body\ngot\n%q\nwant\n%q", badTE, gotBody, wantBody)
    		}
    	}
    }
    
    // Issue 31753: don't sniff when Content-Encoding is set
    func TestContentEncodingNoSniffing(t *testing.T) { run(t, testContentEncodingNoSniffing) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:1.0
    \\--- org:bom:1.0
         \\--- compileClasspath
    
    org:leaf -> 1.0
    \\--- compileClasspath
    """
            where:
            conf << ["",
                     // this is just a sanity check. Nobody should ever write this.
                     "{ capabilities { requireCapability('org:bom-derived-platform') } }"]
        }
    
        def "shows published dependency reason"() {
            given:
            mavenRepo.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		name string
    		req  *Request
    		want bool
    	}{
    		{
    			name: "GET",
    			req:  &Request{Method: "GET"},
    			want: true,
    		},
    		{
    			name: "GET_http.NoBody",
    			req:  &Request{Method: "GET", Body: NoBody},
    			want: true,
    		},
    		{
    			name: "GET_body",
    			req:  &Request{Method: "GET", Body: someBody},
    			want: false,
    		},
    		{
    			name: "POST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. RELEASE.md

    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top