Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for IsSkip (0.69 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		t.Second.Traverse(fn)
    		t.Third.Traverse(fn)
    	}
    }
    
    func (t *Trinary) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(t) {
    		return nil
    	}
    	op := t.Op.Copy(fn, skip)
    	first := t.First.Copy(fn, skip)
    	second := t.Second.Copy(fn, skip)
    	third := t.Third.Copy(fn, skip)
    	if op == nil && first == nil && second == nil && third == nil {
    		return fn(t)
    	}
    	if op == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    			injects:    []framework.Code{framework.Skip, framework.Error, framework.Success},
    			wantStatus: framework.Error,
    		},
    		{
    			name:       "all skip",
    			injects:    []framework.Code{framework.Skip, framework.Skip, framework.Skip},
    			wantStatus: framework.Skip,
    		},
    		{
    			name:       "error on third, but not reached",
    			injects:    []framework.Code{framework.Skip, framework.Success, framework.Error},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    						default:
    							err = dc.Skip()
    							if err != nil {
    								err = msgp.WrapError(err, "Opts", "BaseOptions")
    								return
    							}
    						}
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Opts")
    						return
    					}
    				}
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. cmd/data-usage-cache_gen.go

    							err = msgp.WrapError(err, "Tiers", za0001, "NumObjects")
    							return
    						}
    					default:
    						err = dc.Skip()
    						if err != nil {
    							err = msgp.WrapError(err, "Tiers", za0001)
    							return
    						}
    					}
    				}
    				z.Tiers[za0001] = za0002
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    			ports.HTTP.ServicePort, ports.HTTP.WorkloadPort, t.Apps.Namespace.Name()),
    		children: calls("b-ext-port", check.MTLSForHTTP()),
    	})
    
    	t.RunTraffic(TrafficTestCase{
    		name: "service entry",
    		skip: skip{
    			skip:   true,
    			reason: "not currently working, as SE doesn't have a VIP",
    		},
    		globalConfig: true,
    		config: fmt.Sprintf(`apiVersion: v1
    kind: Service
    metadata:
      name: b-ext-se
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    func TestSchedulerGuaranteeNonNilNodeInSchedulingCycle(t *testing.T) {
    	if goruntime.GOOS == "windows" {
    		// TODO: remove skip once the failing test has been fixed.
    		t.Skip("Skip failing test on Windows.")
    	}
    	random := rand.New(rand.NewSource(time.Now().UnixNano()))
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    	if runtime.GOOS != "darwin" {
    		t.Skip("only affects darwin")
    	}
    
    	testenv.MustHaveExecPath(t, "sw_vers")
    	if vers, err := macosMajorVersion(t); err != nil {
    		if builder := testenv.Builder(); builder != "" {
    			t.Fatalf("unable to determine macOS version: %s", err)
    		} else {
    			t.Skip("unable to determine macOS version")
    		}
    	} else if vers < 11 {
    		t.Skip("behavior only enforced in macOS 11 and after")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    func testParseFormCleanup(t *testing.T, mode testMode) {
    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/20253")
    	}
    
    	const maxMemory = 1024
    	const key = "file"
    
    	if runtime.GOOS == "windows" {
    		// Windows sometimes refuses to remove a file that was just closed.
    		t.Skip("https://go.dev/issue/25965")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    			}
    
    			for k, v := range userAccounts {
    				if k == siteReplicatorSvcAcc {
    					// skip the site replicate svc account as it is
    					// already replicated.
    					continue
    				}
    
    				if v.Credentials.ParentUser != "" && v.Credentials.ParentUser == globalActiveCred.AccessKey {
    					// skip all root user service accounts.
    					continue
    				}
    
    				info.UserInfoMap[k] = madmin.UserInfo{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	for _, pod := range allPods {
    		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)
Back to top