Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for continued (0.46 sec)

  1. src/cmd/link/internal/ld/data.go

    	relocs := ctxt.loader.Relocs(s)
    	for ri := 0; ri < relocs.Count(); ri++ {
    		r := relocs.At(ri)
    		if r.IsMarker() {
    			continue // skip marker relocations
    		}
    		targ := r.Sym()
    		if targ == 0 {
    			continue
    		}
    		if !ctxt.loader.AttrReachable(targ) {
    			if r.Weak() {
    				continue
    			}
    			return fmt.Errorf("dynamic relocation to unreachable symbol %s",
    				ctxt.loader.SymName(targ))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    var serverExpectTests = []serverExpectTest{
    	// Normal 100-continues, case-insensitive.
    	expectTest(100, "100-continue", true, "100 Continue"),
    	expectTest(100, "100-cOntInUE", true, "100 Continue"),
    
    	// No 100-continue.
    	expectTest(100, "", true, "200 OK"),
    
    	// 100-continue but requesting client to deny us,
    	// so it never reads the body.
    	expectTest(100, "100-continue", false, "401 Unauthorized"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		enc := json.NewEncoder(&buf)
    		for {
    			select {
    			case <-ctx.Done():
    				return
    			case li := <-logCh:
    				if !li.SendLog(node, logKind) {
    					continue
    				}
    				buf.Reset()
    				if err := enc.Encode(li); err != nil {
    					continue
    				}
    				select {
    				case <-ctx.Done():
    					return
    				case encodedCh <- append(grid.GetByteBuffer()[:0], buf.Bytes()...):
    				}
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	// buffered data. The header map is cleared when 2xx-5xx headers are
    	// sent, but not with 1xx headers.
    	//
    	// The server will automatically send a 100 (Continue) header
    	// on the first read from the request body if the request has
    	// an "Expect: 100-continue" header.
    	WriteHeader(statusCode int)
    }
    
    // The Flusher interface is implemented by ResponseWriters that allow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    		if i < len(dir) && dir[i] != filepath.Separator {
    			continue
    		}
    		// Note: checking for the vendor directory before checking
    		// for the vendor/path directory helps us hit the
    		// isDir cache more often. It also helps us prepare a more useful
    		// list of places we looked, to report when an import is not found.
    		if !isDir(filepath.Join(dir[:i], "vendor")) {
    			continue
    		}
    		targ := filepath.Join(dir[:i], vpath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	// result: (ADDconst [c] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpMIPSMOVWconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt32(v_1.AuxInt)
    			if !(!t.IsPtr()) {
    				continue
    			}
    			v.reset(OpMIPSADDconst)
    			v.AuxInt = int32ToAuxInt(c)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    		if der == nil {
    			t.Errorf("#%d: failed to find PEM block", i)
    			continue
    		}
    
    		cert, err := ParseCertificate(der.Bytes)
    		if err != nil {
    			t.Errorf("#%d: failed to parse: %s", i, err)
    			continue
    		}
    
    		if err = cert.CheckSignatureFrom(cert); err != nil {
    			t.Errorf("#%d: signature check failed: %s", i, err)
    			continue
    		}
    	}
    }
    
    const ed25519Certificate = `
    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/net/http/transport_test.go

    	// Server sends a 100 Continue response, and the client sends the request body.
    	test.respond("HTTP/1.1 100 Continue")
    	test.wantBodySent()
    	test.respond("HTTP/1.1 200", "Content-Length: 0")
    	test.wantRequestDone(200)
    }
    
    func TestTransportExpect100Continue200ResponseNoConnClose(t *testing.T) {
    	test := newTransport100ContinueTest(t, 1*time.Hour)
    	// No 100 Continue response, no Connection: close header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    				continue
    			}
    			gvk := schema.GroupVersionKind{Version: "v1", Kind: "Status"}
    			if obj.GetObjectKind().GroupVersionKind() != gvk {
    				t.Errorf("%d: unexpected error body: %#v", i, obj)
    			}
    			continue
    		}
    		if resp.StatusCode != http.StatusOK {
    			t.Errorf("%d: invalid status: %#v\n%s", i, resp, bodyOrDie(resp))
    			continue
    		}
    		body := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // Rewrite dst nodes because their input changed.
        for (int i = 0, end = out_edge_info.size(); i < end; i++) {
          const OutEdgeInfo edge = out_edge_info[i];
          if (edge.dst_input == Graph::kControlSlot) {
            continue;
          }
    
          Node* dst = edge.dst;
          NodeDef new_def = dst->def();
          *new_def.mutable_input(edge.dst_input) =
              absl::StrCat(recv_at_host_node->name(), ":", index);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top