Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 918 for IsSkip (0.11 sec)

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

    func (rst *rustState) writeByte(c byte) {
    	if rst.skip {
    		return
    	}
    	if rst.max > 0 && rst.buf.Len() > rst.max {
    		rst.skip = true
    		return
    	}
    	rst.last = c
    	rst.buf.WriteByte(c)
    }
    
    // writeString writes a string to the buffer.
    func (rst *rustState) writeString(s string) {
    	if rst.skip {
    		return
    	}
    	if rst.max > 0 && rst.buf.Len() > rst.max {
    		rst.skip = true
    		return
    	}
    	if len(s) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. src/hash/maphash/smhasher_test.go

    	}
    	h.check(t)
    }
    
    // Strings with up to two nonzero bytes all have distinct hashes.
    func TestSmhasherTwoNonzero(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	for n := 2; n <= 16; n++ {
    		twoNonZero(h, n)
    	}
    	h.check(t)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    			name:                "nothing",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    		{
    			pod:                 &v1.Pod{},
    			nodeInfo:            framework.NewNodeInfo(st.MakePod().Volume(volState).Obj()),
    			name:                "one state",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  4. pkg/test/framework/suite.go

    				// the test environment is an external control plane topology, the test can go on
    				return nil
    			}
    		}
    		// the test environment is not an external control plane topology, skip the test
    		s.Skip("Not an external control plane topology, skip this test")
    		return nil
    	}
    	s.requireFns = append(s.requireFns, fn)
    	return s
    }
    
    func (s *suiteImpl) RequireMinVersion(minorVersion uint) Suite {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/runtime/proc_test.go

    		}
    	}
    }
    
    func TestPingPongHog(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("no preemption on wasm yet")
    	}
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	if race.Enabled {
    		// The race detector randomizes the scheduler,
    		// which causes this test to fail (#38266).
    		t.Skip("skipping in -race mode")
    	}
    
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. src/internal/testenv/testenv.go

    // threads in parallel. If not, MustHaveParallelism calls t.Skip with an explanation.
    func MustHaveParallelism(t testing.TB) {
    	if !HasParallelism() {
    		t.Skipf("skipping test: no parallelism available on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    }
    
    // GoToolPath reports the path to the Go tool.
    // It is a convenience wrapper around GoTool.
    // If the tool is unavailable GoToolPath calls t.Skip.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

    import org.gradle.internal.taskgraph.CalculateTaskGraphBuildOperationType
    import org.gradle.internal.taskgraph.CalculateTreeTaskGraphBuildOperationType
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class CalculateTaskGraphBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        final buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/syscall/exec_linux_test.go

    		t.Fatal(err)
    	}
    }
    
    func TestUnshare(t *testing.T) {
    	path := "/proc/net/dev"
    	if _, err := os.Stat(path); err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("kernel doesn't support proc filesystem")
    		}
    		if os.IsPermission(err) {
    			t.Skip("unable to test proc filesystem due to permissions")
    		}
    		t.Fatal(err)
    	}
    
    	b, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    }
    
    func TestLookupGmailTXT(t *testing.T) {
    	if runtime.GOOS == "plan9" {
    		t.Skip("skipping on plan9; see https://golang.org/issue/29722")
    	}
    	t.Parallel()
    	mustHaveExternalNetwork(t)
    
    	if runtime.GOOS == "ios" {
    		t.Skip("no resolv.conf on iOS")
    	}
    
    	if !supportsIPv4() || !*testIPv4 {
    		t.Skip("IPv4 is required")
    	}
    
    	attempts := 0
    	for i := 0; i < len(lookupGmailTXTTests); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			maxVols:             1,
    			test:                "skip Filter when the pod only uses secrets and configmaps",
    			wantPreFilterStatus: framework.NewStatus(framework.Skip),
    		},
    		{
    			newPod:           ephemeralPodWithConfigmapAndSecret,
    			ephemeralEnabled: true,
    			extraClaims:      []v1.PersistentVolumeClaim{*ephemeralClaim},
    			maxVols:          1,
    			test:             "don't skip Filter when the pods has ephemeral volumes",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
Back to top