Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for IsSkip (0.18 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      auto else_results =
          op.ResolveElseFunction(&symbol_table_).getFunctionType().getResults();
      for (auto it : llvm::zip(op.getResults(), then_results, else_results)) {
        // If then and else types do not match, skip refinement for that result.
        if (std::get<1>(it) != std::get<2>(it)) continue;
        changed = RefineResultType(op, std::get<0>(it), std::get<1>(it)) || changed;
      }
      return changed;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    )
    
    func skipIfDNSHijacked(t *testing.T) {
    	// Skip this test if the user is using a shady/ISP
    	// DNS server hijacking queries.
    	// See issues 16732, 16716.
    	isDNSHijackedOnce.Do(func() {
    		addrs, _ := net.LookupHost("dns-should-not-resolve.golang")
    		isDNSHijacked = len(addrs) != 0
    	})
    	if isDNSHijacked {
    		t.Skip("skipping; test requires non-hijacking DNS server")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top