Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 212 for effects (0.26 sec)

  1. src/fmt/fmt_test.go

    	{"% q", '☺', `'☺'`},  // The space modifier should have no effect.
    	{"%.0q", '☺', `'☺'`}, // Specifying precision should have no effect.
    	{"%10q", '⌘', `       '⌘'`},
    	{"%+10q", '⌘', `  '\u2318'`},
    	{"%-10q", '⌘', `'⌘'       `},
    	{"%+-10q", '⌘', `'\u2318'  `},
    	{"%010q", '⌘', `0000000'⌘'`},
    	{"%+010q", '⌘', `00'\u2318'`},
    	{"%-010q", '⌘', `'⌘'       `}, // 0 has no effect when - is present.
    	{"%+-010q", '⌘', `'\u2318'  `},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	require.Equal(t, 2, numCompiles, "expect changing binding causes a recompile")
    }
    
    // Shows that a policy which is in effect will stop being in effect when removed
    func TestRemoveDefinition(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    	testContext := setupFakeTest(t, compiler, matcher)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Tests are grouped and merged based on their reported name.
    When using any kind of test parameterization that affects the reported test name,
    or any other kind of mechanism that produces a potentially dynamic test name,
    care should be taken to ensure that the test name is stable and does not unnecessarily change.
    
    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. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    			faultOnNilArg0: true,
    		},
    
    		// duffcopy
    		// arg0 = address of dst memory (in R21, changed as side effect)
    		// arg1 = address of src memory (in R20, changed as side effect)
    		// arg2 = mem
    		// auxint = offset into duffcopy code to start executing
    		// returns mem
    		// R20, R21 changed as side effect
    		// R16 and R17 may be clobbered by linker trampoline.
    		{
    			name:      "DUFFCOPY",
    			aux:       "Int64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/time/time.go

    	}
    	return l
    }
    
    // Zone computes the time zone in effect at time t, returning the abbreviated
    // name of the zone (such as "CET") and its offset in seconds east of UTC.
    func (t Time) Zone() (name string, offset int) {
    	name, offset, _, _, _ = t.loc.lookup(t.unixSec())
    	return
    }
    
    // ZoneBounds returns the bounds of the time zone in effect at time t.
    // The zone begins at start and the next zone begins at end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	UnreachableTaintTemplate = &v1.Taint{
    		Key:    v1.TaintNodeUnreachable,
    		Effect: v1.TaintEffectNoExecute,
    	}
    
    	// NotReadyTaintTemplate is the taint for when a node is not ready for
    	// executing pods
    	NotReadyTaintTemplate = &v1.Taint{
    		Key:    v1.TaintNodeNotReady,
    		Effect: v1.TaintEffectNoExecute,
    	}
    
    	// map {NodeConditionType: {ConditionStatus: TaintKey}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

            --invalid-tag-text-color: #000000;
        }
    }
    /*
     * Styles for individual HTML elements.
     *
     * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
     * HTML element throughout the page.
     */
    body {
        background-color:var(--body-background-color);
        color:var(--body-text-color);
        font-family:var(--body-font-family);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		},
    
    		// large move
    		// auxint = remaining bytes after loop (rem)
    		// arg0 = address of dst memory (in R1, changed as a side effect)
    		// arg1 = address of src memory (in R2, changed as a side effect)
    		// arg2 = pointer to last address to move in loop + 256
    		// arg3 = mem
    		// returns mem
    		//
    		// mvc: MVC  $256, 0(R2), 0(R1)
    		//      MOVD $256(R1), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  9. tests/migrate_test.go

    					t.Fatalf("column name type should be correct, name: %v, length: %v, expects: %v, column: %#v",
    						columnType.Name(), columnType.DatabaseTypeName(), dataType, columnType)
    				}
    				if length, ok := columnType.Length(); !ok || length != 100 {
    					t.Fatalf("column name length should be correct, name: %v, length: %v, expects: %v, column: %#v",
    						columnType.Name(), length, 100, columnType)
    				}
    			case "age":
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  10. src/time/time_test.go

    	{-400, 1, 15, 15},
    	{-400, 2, 1, 32},
    	{-400, 2, 15, 46},
    	{-400, 3, 1, 61},
    	{-400, 3, 15, 75},
    	{-400, 4, 1, 92},
    	{-400, 12, 31, 366},
    
    	// Special Cases
    
    	// Gregorian calendar change (no effect)
    	{1582, 10, 4, 277},
    	{1582, 10, 15, 288},
    }
    
    // Check to see if YearDay is location sensitive
    var yearDayLocations = []*Location{
    	FixedZone("UTC-8", -8*60*60),
    	FixedZone("UTC-4", -4*60*60),
    	UTC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top