Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for continued (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            add_to_worklist(set_item.getOutputHandle());
            continue;
          }
          if (auto pop = llvm::dyn_cast<TensorListPopBackOp>(use.getOwner())) {
            add_to_worklist(pop.getOutputHandle());
            continue;
          }
          if (auto resize = llvm::dyn_cast<TensorListResizeOp>(use.getOwner())) {
            add_to_worklist(resize.getOutputHandle());
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		if stringsHasPrefixFold(k, ReservedMetadataPrefixLower) {
    			continue
    		}
    
    		if equals(k, xhttp.AmzBucketReplicationStatus) {
    			continue
    		}
    
    		// https://github.com/google/security-research/security/advisories/GHSA-76wf-9vgp-pj7w
    		if equals(k, xhttp.AmzMetaUnencryptedContentLength, xhttp.AmzMetaUnencryptedContentMD5) {
    			continue
    		}
    		meta[k] = v
    	}
    
    	if oi.ContentEncoding != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		if pod.DeletionTimestamp == nil {
    			// skip pods which don't have a deletion timestamp
    			continue
    		}
    		if !podutil.IsPodPhaseTerminal(pod.Status.Phase) {
    			// skip the non-terminal pods
    			continue
    		}
    		if _, knownPod := workingPods[pod.UID]; knownPod {
    			// skip pods known to pod workers
    			continue
    		}
    		terminalPodsToDelete[pod.UID] = pod
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		for _, i := range rule.Ingress {
    			if i == nil {
    				errs = AppendValidation(errs, fmt.Errorf("sidecar: ingress may not be null"))
    				continue
    			}
    			if i.Port == nil {
    				errs = AppendValidation(errs, fmt.Errorf("sidecar: port is required for ingress listeners"))
    				continue
    			}
    
    			// nolint: staticcheck
    			if i.Port.TargetPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	}
    	var gofiles []string
    	for _, name := range strings.Split(string(list), "\n") {
    		if name == "" { // end of list
    			continue
    		} else if !strings.HasSuffix(name, ".go") {
    			continue
    		}
    		if strings.HasPrefix(name, "./") {
    			gofiles = append(gofiles, name[len("./"):])
    			continue
    		}
    		file, err := b.findCachedObjdirFile(a, c, name)
    		if err != nil {
    			return fmt.Errorf("finding %s: %w", name, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      for (const auto& arg_attr : dict_attrs) {
        if (!arg_attr) continue;
    
        auto attrs = arg_attr.getValue();
        for (const auto attr : attrs) {
          if (attr.getName() == attr_name) {
            auto array_attr =
                mlir::dyn_cast_or_null<mlir::ArrayAttr>(attr.getValue());
            if (!array_attr || array_attr.empty()) continue;
            auto string_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top