Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for continued (0.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/kubelet.go

    				continue
    			}
    			kl.podWorkers.UpdatePod(UpdatePodOptions{
    				Pod:        pod,
    				MirrorPod:  mirrorPod,
    				UpdateType: kubetypes.SyncPodUpdate,
    				StartTime:  start,
    			})
    			continue
    		}
    
    		// Only go through the admission process if the pod is not requested
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    continue;
                if (name.length() > 0) {
                    // if !files we don't need to create SmbFiles here
                    SmbFile f = new SmbFile(this, name, e.getType(),
                                ATTR_READONLY | ATTR_DIRECTORY, 0L, 0L, 0L );
                    if (ff != null && ff.accept(f) == false)
                        continue;
                    if (files) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

            } else {
              result_dim_sizes[axis] += operand_dim_size;
            }
            continue;
          }
    
          if (ShapedType::isDynamic(operand_dim_size)) continue;
    
          if (ShapedType::isDynamic(result_dim_size)) {
            result_dim_sizes[dim] = operand_dim_size;
            result_dim_sizes_loc[dim] = operand.index();
            continue;
          }
    
          if (result_dim_size != operand_dim_size)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top