Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 279 for cased (0.15 sec)

  1. cmd/erasure-healing_test.go

    		expectedDangling bool
    	}{
    		{
    			name: "FileInfoExists-case1",
    			metaArr: []FileInfo{
    				{},
    				{},
    				fi,
    				fi,
    			},
    			errs: []error{
    				errFileNotFound,
    				errDiskNotFound,
    				nil,
    				nil,
    			},
    			dataErrs:         nil,
    			expectedMeta:     fi,
    			expectedDangling: false,
    		},
    		{
    			name: "FileInfoExists-case2",
    			metaArr: []FileInfo{
    				{},
    				{},
    				fi,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    								cases = append(cases,
    									testCase{
    										path:  fmt.Sprintf("/policy-%s-all", ns.Prefix()),
    										allow: ns.Name() == to.Config().Namespace.Name(),
    									})
    							}
    
    							// Make sure the workload-specific paths succeeds.
    							cases = append(cases,
    								testCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The `outputPerTestCase` option, when enabled, associates any output logging generated during a test case to that test case in the results.
    When disabled (the default) output is associated with the test class as whole and not the individual test cases (e.g. test methods) that produced the logging output.
    Most modern tools that observe JUnit XML files support the “output per test case” format.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    }
    
    func (nc *Controller) setLimiterInZone(zone string, zoneSize int, state ZoneState) {
    	switch state {
    	case stateNormal:
    		nc.zoneNoExecuteTainter[zone].SwapLimiter(nc.evictionLimiterQPS)
    	case statePartialDisruption:
    		nc.zoneNoExecuteTainter[zone].SwapLimiter(
    			nc.enterPartialDisruptionFunc(zoneSize))
    	case stateFullDisruption:
    		nc.zoneNoExecuteTainter[zone].SwapLimiter(
    			nc.enterFullDisruptionFunc(zoneSize))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    include::sample[dir="snippets/kotlinDsl/noAccessors/kotlin",files="build.gradle.kts[tags=project-container-extension]"]
    ====
    
    All elements within a container-based project extension have a name, so you can use this technique in all such cases.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		switch *options.PropagationPolicy {
    		case metav1.DeletePropagationOrphan:
    			return true
    		case metav1.DeletePropagationBackground, metav1.DeletePropagationForeground:
    			return false
    		}
    	}
    
    	// If a finalizer is set in the object, it overrides the default
    	// validation should make sure the two cases won't be true at the same time.
    	finalizers := accessor.GetFinalizers()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

          switch (c) {
            case '\t':
            case '\n':
            case '\013':
            case '\f':
            case '\r':
            case ' ':
            case '\u0085':
            case '\u1680':
            case '\u2028':
            case '\u2029':
            case '\u205f':
            case '\u3000':
              return true;
            case '\u2007':
              return false;
            default:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    func computeRZlog(userSize uintptr) uintptr {
    	switch {
    	case userSize <= (64 - 16):
    		return 16 << 0
    	case userSize <= (128 - 32):
    		return 16 << 1
    	case userSize <= (512 - 64):
    		return 16 << 2
    	case userSize <= (4096 - 128):
    		return 16 << 3
    	case userSize <= (1<<14)-256:
    		return 16 << 4
    	case userSize <= (1<<15)-512:
    		return 16 << 5
    	case userSize <= (1<<16)-1024:
    		return 16 << 6
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    	case *ast.FuncType:
    		p.print(token.FUNC)
    		p.signature(x)
    
    	case *ast.InterfaceType:
    		p.print(token.INTERFACE)
    		p.fieldList(x.Methods, false, x.Incomplete)
    
    	case *ast.MapType:
    		p.print(token.MAP, token.LBRACK)
    		p.expr(x.Key)
    		p.print(token.RBRACK)
    		p.expr(x.Value)
    
    	case *ast.ChanType:
    		switch x.Dir {
    		case ast.SEND | ast.RECV:
    			p.print(token.CHAN)
    		case ast.RECV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    	case "skip":
    		if *runSkips {
    			break
    		}
    		t.Skip("skip")
    	default:
    		t.Fatalf("unknown pattern: %q", action)
    	}
    
    	goexp := goExperiment
    	godebug := goDebug
    
    	// collect flags
    	for len(args) > 0 && strings.HasPrefix(args[0], "-") {
    		switch args[0] {
    		case "-1":
    			wantError = true
    		case "-0":
    			wantError = false
    		case "-s":
    			singlefilepkgs = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top