Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for continueCh (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        const tensorflow::OpRegistrationData* op_reg_data =
            tensorflow::OpRegistry::Global()->LookUp(node_def.op());
        if (!op_reg_data) {
          // This is likely a function call node, so we should continue.
          continue;
        }
        ::tensorflow::AddDefaultsToNodeDef(op_reg_data->op_def, &node_def);
      }
      return absl::OkStatus();
    }
    
    // Mapping from node name to feed (index and ArrayInfo). Node name must outlive
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	// result: (ADDI [val] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpRISCV64MOVDconst {
    				continue
    			}
    			t := v_0.Type
    			val := auxIntToInt64(v_0.AuxInt)
    			x := v_1
    			if !(is32Bit(val) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpRISCV64ADDI)
    			v.AuxInt = int64ToAuxInt(val)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        auto splat_attr = mlir::dyn_cast_or_null<SplatElementsAttr>(operand);
        if (!splat_attr) continue;
    
        if (splat_attr.getType() != result_type) continue;
    
        // We can only fold away constant Falses.
        auto splat_value = splat_attr.getSplatValue<BoolAttr>().getValue();
        if (splat_value) continue;
    
        return operand;
      }
    
      return {};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. 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)
  10. src/internal/trace/traceviewer/static/webcomponents.min.js

    le host":"authority ignore slashes";break;case"authority first slash":if("/"!=y){c("Expected '/', got: "+y),l="authority ignore slashes";continue}l="authority second slash";break;case"authority second slash":if(l="authority ignore slashes","/"!=y){c("Expected '/', got: "+y);continue}break;case"authority ignore slashes":if("/"!=y&&"\\"!=y){l="authority";continue}c("Expected authority, got: "+y);break;case"authority":if("@"==y){v&&(c("@ already seen."),d+="%40"),v=!0;for(var S=0;S<d.length;S++){var...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
Back to top