Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,018 for continueCh (0.3 sec)

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

                                       value_to_device);
            continue;
          }
    
          // Op has an unsupported device.
          if (has_device) continue;
    
          if (!IsSupportedOpToSetDevice(*op_to_update)) continue;
    
          llvm::StringRef new_device =
              FindDeviceFromOperands(*op_to_update, value_to_device);
          if (new_device.empty()) continue;
    
          auto new_device_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. docs/debugging/s3-check-md5/main.go

    			if object.Err != nil {
    				log.Println("FAILED: LIST with error:", object.Err)
    				continue
    			}
    			if !minModTime.IsZero() && object.LastModified.Before(minModTime) {
    				continue
    			}
    			if object.IsDeleteMarker {
    				log.Println("SKIPPED: DELETE marker object:", objFullPath(object))
    				continue
    			}
    			if _, ok := object.UserMetadata["X-Amz-Server-Side-Encryption-Customer-Algorithm"]; ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

        if (!scope->isProperAncestor(replicate)) continue;
        bool has_conflicting_write = false;
        for (OpOperand& use : res.getUses()) {
          Operation* using_op = use.getOwner();
          if (using_op == read) continue;
          if (!replicate->isProperAncestor(using_op)) continue;
          Operation* peer = GetAncestorBelow(using_op, replicate);
          if (read->isBeforeInBlock(peer)) continue;
          if (llvm::isa<ReadVariableOp>(peer)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher_test.go

    	}
    	if limit1.Continue == "" {
    		t.Errorf("Expected list to have Continue but got none")
    	}
    	obj2, err := lw.List(metav1.ListOptions{Limit: 2, Continue: limit1.Continue})
    	if err != nil {
    		t.Fatalf("List failed: %v", err)
    	}
    	limit2, ok := obj2.(*example.PodList)
    	if !ok {
    		t.Fatalf("Expected PodList but got %v", limit2)
    	}
    	if limit2.Continue != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    					patchContext != networking.EnvoyFilter_GATEWAY {
    					continue
    				}
    				if !commonConditionMatch(patchContext, lp) {
    					IncrementEnvoyFilterMetric(lp.Key(), Listener, false)
    					continue
    				}
    				// clone before append. Otherwise, subsequent operations on this listener will corrupt
    				// the master value stored in CP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/framepointer/framepointer.go

    				active = true
    				continue
    			}
    			if !active {
    				continue
    			}
    
    			if asmWriteBP.MatchString(line) { // clobber of BP, function is not OK
    				pass.Reportf(analysisutil.LineStart(tf, lineno), "frame pointer is clobbered before saving")
    				active = false
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. cmd/notification.go

    	for _, client := range sys.peerClients {
    		if client == nil {
    			continue
    		}
    		data, err := client.DownloadProfileData()
    		if err != nil {
    			reqInfo := (&logger.ReqInfo{}).AppendTags("peerAddress", client.host.String())
    			ctx := logger.SetReqInfo(ctx, reqInfo)
    			peersLogOnceIf(ctx, err, client.host.String())
    			continue
    		}
    
    		profilingDataFound = true
    
    		for typ, data := range data {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. src/net/http/cookie.go

    		var part string
    		for len(line) > 0 { // continue since we have rest
    			part, line, _ = strings.Cut(line, ";")
    			part = textproto.TrimString(part)
    			if part == "" {
    				continue
    			}
    			name, val, _ := strings.Cut(part, "=")
    			name = textproto.TrimString(name)
    			if !isCookieNameValid(name) {
    				continue
    			}
    			if filter != "" && filter != name {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    			continue
    		}
    		// Do not attempt to re-symbolize a mapping that has already been symbolized.
    		if !force && (m.HasFunctions || m.HasFilenames || m.HasLineNumbers) {
    			continue
    		}
    		if m.File == "" {
    			if midx == 0 {
    				ui.PrintErr("Main binary filename not available.")
    				continue
    			}
    			missingBinaries = true
    			continue
    		}
    		if m.Unsymbolizable() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

          if (!mlir::isa<TF::ResourceType>(getElementTypeOrSelf(val.getType())))
            continue;
    
          // Check that there is only a single global tensor associated with arg.
          const TF::ResourceDataflowState *latticeElement =
              solver.lookupState<TF::ResourceDataflowState>(val);
          if (!latticeElement || latticeElement->getValue().ops.size() != 1)
            continue;
    
          // Don't freeze mutable tensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top