Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 297 for continueCh (0.27 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                        continue;
                    }
                    if (claimedBy == null) {
                        claimedBy = handler;
                    } else {
                        handler.ambiguous(propertyMetaData);
                        break;
                    }
                }
                if (claimedBy != null) {
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    			continue
    		}
    		if mustBeLabeled != "" || mustNotBeLabeled != "" {
    			// We found a definitive frame, so mayBeLabeled hints are not relevant.
    			mayBeLabeled = false
    		}
    		if mayBeLabeled {
    			// This sample may or may not be labeled, so there's nothing we can check.
    			continue
    		}
    		if mustBeLabeled != "" && !isLabeled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    		u0, err := url.Parse(tt.initialURL)
    		if err != nil {
    			t.Errorf("%d. initial URL %q parse error: %v", i, tt.initialURL, err)
    			continue
    		}
    		u1, err := url.Parse(tt.destURL)
    		if err != nil {
    			t.Errorf("%d. dest URL %q parse error: %v", i, tt.destURL, err)
    			continue
    		}
    		got := Export_shouldCopyHeaderOnRedirect(tt.header, u0, u1)
    		if got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	consistentReadFromStorage := resourceVersion == "" && !(consistentListFromCacheEnabled && requestWatchProgressSupported)
    	// Watch cache doesn't support continuations, so serve them from etcd.
    	hasContinuation := len(pred.Continue) > 0
    	// Serve paginated requests about revision "0" from watch cache to avoid overwhelming etcd.
    	hasLimit := pred.Limit > 0 && resourceVersion != "0"
    	// Watch cache only supports ResourceVersionMatchNotOlderThan (default).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	for {
    		released, workTime := scavenger.run()
    		if released == 0 {
    			scavenger.park()
    			continue
    		}
    		mheap_.pages.scav.releasedBg.Add(released)
    		scavenger.sleep(workTime)
    	}
    }
    
    // scavenge scavenges nbytes worth of free pages, starting with the
    // highest address first. Successive calls continue from where it left
    // off until the heap is exhausted. force makes all memory available to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/reflect/type.go

    					result.Index = append(result.Index, i)
    					ok = true
    					continue
    				}
    
    				// Queue embedded struct fields for processing with next level,
    				// but only if we haven't seen a match yet at this level and only
    				// if the embedded types haven't already been queued.
    				if ok || ntyp == nil || ntyp.Kind() != abi.Struct {
    					continue
    				}
    				styp := (*structType)(unsafe.Pointer(ntyp))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    				"captured-waypoint",
    			})
    		})
    
    		t.NewSubTest("before").Run(func(t framework.TestContext) {
    			dst := apps.Captured
    			for _, src := range apps.All {
    				if src.Config().IsUncaptured() {
    					continue
    				}
    				t.NewSubTestf("from %v", src.Config().Service).Run(func(t framework.TestContext) {
    					c := IsL4()
    					if src.Config().HasSidecar() {
    						c = IsL7()
    					}
    					opt := echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test.cc

          continue;
        }
        auto tag = tensorflow::strings::StrCat("Device #", i, " (", name, ")");
        // Copy to device
        TFE_TensorHandle* hdevice =
            TFE_TensorHandleCopyToDevice(hcpu, ctx, name.c_str(), status.get());
        if (TF_GetCode(status.get()) != TF_OK) {
          ADD_FAILURE() << tag << " -- " << TF_Message(status.get());
          continue;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            for (Profile profile : model.getProfiles()) {
                Activation activation = profile.getActivation();
    
                if (activation == null) {
                    continue;
                }
    
                if (clone) {
                    activation = activation.clone();
                }
    
                activations.put(profile.getId(), activation);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. tests/integration/security/authz_test.go

    										})
    									break
    								}
    							}
    
    							for _, c := range cases {
    								if c.updateLabel {
    									// skip updating pod labels for VM
    									if to.Config().DeployAsVM {
    										continue
    									}
    									for _, instance := range to.Instances() {
    										err := instance.UpdateWorkloadLabel(map[string]string{"foo": "bla"}, nil)
    										if err != nil {
    											t.Fatal(err)
    										}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top