Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,836 for continueCh (0.47 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGFailurePolicyIntegrationTest.groovy

            expect:
            fails "test"
    
            and:
            testResults.assertConfigMethodFailed("fail")
            testResults.assertTestSkipped("someTest")
        }
    
        def "can be configured to continue executing tests after a config method failure"() {
            when:
            assumeTrue(supportConfigFailurePolicy())
    
            buildFile << """
                testing {
                    suites {
                        test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParser.java

                if (parsedURI.getHost() != null && !parsedURI.getHost().equals(baseURIHost)) {
                    continue;
                }
                if (parsedURI.getScheme() != null && !parsedURI.getScheme().equals(baseURIScheme)) {
                    continue;
                }
                if (parsedURI.getPort() != baseURIPort) {
                    continue;
                }
                if (parsedURI.getPath() != null && !parsedURI.getPath().startsWith(prefixPath)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/typeconverter.go

    			group, ok = gvkMap["group"].(string)
    			if !ok {
    				continue
    			}
    			version, ok = gvkMap["version"].(string)
    			if !ok {
    				continue
    			}
    			kind, ok = gvkMap["kind"].(string)
    			if !ok {
    				continue
    			}
    
    		} else if gvkMap, ok := gvk.(map[string]interface{}); ok {
    			group, ok = gvkMap["group"].(string)
    			if !ok {
    				continue
    			}
    			version, ok = gvkMap["version"].(string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 5.6K 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. src/cmd/internal/obj/plist.go

    			fmt.Printf("obj: %v\n", p)
    		}
    		plink = p.Link
    		p.Link = nil
    
    		switch p.As {
    		case AEND:
    			continue
    
    		case ATEXT:
    			s := p.From.Sym
    			if s == nil {
    				// func _() { }
    				curtext = nil
    				continue
    			}
    			text = append(text, s)
    			etext = p
    			curtext = s
    			continue
    
    		case AFUNCDATA:
    			// Rewrite reference to go_args_stackmap(SB) to the Go-provided declaration information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top