Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 918 for IsSkip (0.12 sec)

  1. cmd/bucket-replication-metrics_gen.go

    					if err != nil {
    						err = msgp.WrapError(err, "Max", "Bytes")
    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Max")
    						return
    					}
    				}
    			}
    		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
    - 33.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/cc_test.go

    func (c *config) skipIfRuntimeIncompatible(t *testing.T) {
    	check := &c.runtimeCheck
    	check.once.Do(func() {
    		check.skip, check.err = c.checkRuntime()
    	})
    	if check.err != nil {
    		t.Helper()
    		if check.skip {
    			t.Skip(check.err)
    		}
    		t.Fatal(check.err)
    	}
    }
    
    func (c *config) checkRuntime() (skip bool, err error) {
    	if c.sanitizer != "thread" {
    		return false, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/cluster/cluster.go

    			continue
    		}
    		if skip := shouldSkipPod(&p, config); skip {
    			continue
    		}
    
    		deployment := getOwnerDeployment(&p, replicasets.Items)
    		if skip := shouldSkipDeployment(deployment, config); skip {
    			continue
    		}
    		daemonset := getOwnerDaemonSet(&p, daemonsets.Items)
    		if skip := shouldSkipDaemonSet(daemonset, config); skip {
    			continue
    		}
    
    		if deployment != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (1)
  4. src/cmd/go/testdata/script/test_fuzz.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Test that running a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    # Test that fuzzing a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test -fuzz=Fuzz -fuzztime=1x noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    				}
    
    				if cmd.Flags().Lookup("skip-phases") != nil {
    					t.Error("cmd has skip-phases flag while it should not\n")
    				}
    
    				if getCmd(cmd, "phase") != nil {
    					t.Error("cmd has phase subcommand while it should not\n")
    				}
    
    				return
    			}
    
    			// Otherwise, if there are phases
    
    			// Checks that cmd get the description set and the skip-phases flags
    			if cmd.Long == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/helpers_test.go

    		"fooptr.foo",
    		"bars[*].foo",
    		"barMap[*].foo",
    		"skipRecurseStruct",   // skip recursing a struct
    		"skipRecursePointer",  // skip recursing a struct pointer
    		"skipRecurseList1",    // skip recursing a list
    		"skipRecurseList2[*]", // skip recursing list items
    		"skipRecurseMap1",     // skip recursing a map
    		"skipRecurseMap2[*]",  // skip recursing map items
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    // Calls Run()
    // Verifies the actual state of world contains that plugin
    func Test_Run_Positive_Register(t *testing.T) {
    	// Skip tests that fail on Windows, as discussed during the SIG Testing meeting from January 10, 2023
    	if runtime.GOOS == "windows" {
    		t.Skip("Skipping test that fails on Windows")
    	}
    
    	defer cleanup(t)
    
    	dsw := cache.NewDesiredStateOfWorld()
    	asw := cache.NewActualStateOfWorld()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. build/root/Makefile

    #
    # Example:
    #   make release-skip-tests
    #   make quick-release
    endef
    .PHONY: release-skip-tests quick-release
    ifeq ($(PRINT_HELP),y)
    release-skip-tests quick-release:
    	echo "$$RELEASE_SKIP_TESTS_HELP_INFO"
    else
    release-skip-tests quick-release: KUBE_RELEASE_RUN_TESTS = n
    release-skip-tests quick-release: KUBE_FASTBUILD = true
    release-skip-tests quick-release:
    	build/release.sh
    endif
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_test.go

    		// Since this test does need root to work, we need to skip it.
    		t.Skip("skipping root only test on a non-root builder")
    	}
    
    	if runtime.GOOS == "android" {
    		t.Skip("skipping on rooted android, see issue 27364")
    	}
    
    	// Copy the test binary to a location that a non-root user can read/execute
    	// after we drop privileges
    	tempDir, err := os.MkdirTemp("", "TestSyscallNoError")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/go/types/stdlib_test.go

    		<-fut.done
    	}
    	return fut.pkg, fut.err
    }
    
    // firstComment returns the contents of the first non-empty comment in
    // the given file, "skip", or the empty string. No matter the present
    // comments, if any of them contains a build tag, the result is always
    // "skip". Only comments before the "package" token and within the first
    // 4K of the file are considered.
    func firstComment(filename string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top