Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for continueCh (0.15 sec)

  1. src/net/url/url_test.go

    	b.StopTimer()
    	b.ReportAllocs()
    	for _, tt := range urltests {
    		u, err := Parse(tt.in)
    		if err != nil {
    			b.Errorf("Parse(%q) returned error %s", tt.in, err)
    			continue
    		}
    		if tt.roundtrip == "" {
    			continue
    		}
    		b.StartTimer()
    		var g string
    		for i := 0; i < b.N; i++ {
    			g = u.String()
    		}
    		b.StopTimer()
    		if w := tt.roundtrip; b.N > 0 && g != w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// computePodResizeAction updates 'changes' if resize policy requires restarting this container
    			continue
    		} else {
    			// Keep the container.
    			keepCount++
    			continue
    		}
    
    		// We need to kill the container, but if we also want to restart the
    		// container afterwards, make the intent clear in the message. Also do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    			if err != nil {
    				t.Errorf("range=%q content-type = %q; %v", rt.r, ct, err)
    				continue
    			}
    			if typ != "multipart/byteranges" {
    				t.Errorf("range=%q content-type = %q; want multipart/byteranges", rt.r, typ)
    				continue
    			}
    			if params["boundary"] == "" {
    				t.Errorf("range=%q content-type = %q; lacks boundary", rt.r, ct)
    				continue
    			}
    			if g, w := resp.ContentLength, int64(len(body)); g != w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        continue;
                    }
                    if (targetComponent != null && targetComponent.getModule().isChangingSelection()) {
                        // don't requeue something which is already changing selection
                        continue;
                    }
                    outgoingDependency.cleanUpOnSourceChange(this);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	pod := pInfo.Pod
    	queueStrategy := queueSkip
    	for eventToMatch, hintfns := range hintMap {
    		if !eventToMatch.Match(event) {
    			continue
    		}
    
    		for _, hintfn := range hintfns {
    			if !rejectorPlugins.Has(hintfn.PluginName) {
    				// skip if it's not hintfn from rejectorPlugins.
    				continue
    			}
    
    			hint, err := hintfn.QueueingHintFn(logger, pod, oldObj, newObj)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

          Operation* user = use.getOwner();
          if (user->hasTrait<mlir::OpTrait::IsTerminator>()) continue;
    
          auto affine_user = llvm::dyn_cast<mlir::AffineQuantizedOpInterface>(user);
          if (affine_user &&
              affine_user.GetAffineOperandIndex() == use.getOperandNumber() &&
              affine_user.RequiredNarrowRangeAffineOperand())
            continue;
          // Create a fully range quantized constant.
          if (full_range_const == value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		for _, x := range list {
    			if x == ok || (ok == "android" && x == "linux") || (ok == "illumos" && x == "solaris") || (ok == "ios" && x == "darwin") {
    				continue
    			}
    			i := strings.Index(name, x)
    			if i <= 0 || name[i-1] != '_' {
    				continue
    			}
    			i += len(x)
    			if i == len(name) || name[i] == '.' || name[i] == '_' {
    				return true
    			}
    		}
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                        e.getModelId(), e.getMessage(), pomFile != null ? pomFile.toFile() : null, e);
                            }
                            // validation error, continue project building and delay failing to help IDEs
                            error = e;
                        }
    
                        modelProblems = result.getProblems();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    		if err != nil {
    			t.Errorf("%s: parse error: %s", test.name, err)
    			continue
    		}
    		b.Reset()
    		err = tmpl.Execute(b, test.data)
    		switch {
    		case !test.ok && err == nil:
    			t.Errorf("%s: expected error; got none", test.name)
    			continue
    		case test.ok && err != nil:
    			t.Errorf("%s: unexpected execute error: %s", test.name, err)
    			continue
    		case !test.ok && err != nil:
    			// expected error, got one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    			sf := iu.srcFunc(uf)
    			callee := u.calleeFuncID
    			u.calleeFuncID = sf.funcID
    			if !(showRuntime || showframe(sf, gp, n == 0, callee)) {
    				continue
    			}
    
    			if pr, stop := commitFrame(); stop {
    				return
    			} else if !pr {
    				continue
    			}
    
    			name := sf.name()
    			file, line := iu.fileLine(uf)
    			// Print during crash.
    			//	main(0x1, 0x2, 0x3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top