Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for effects (0.55 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/testing/testing.go

    // after the test.
    //
    // Because Setenv affects the whole process, it cannot be used
    // in parallel tests or tests with parallel ancestors.
    func (t *T) Setenv(key, value string) {
    	// Non-parallel subtests that have parallel ancestors may still
    	// run in parallel with other tests: they are only non-parallel
    	// with respect to the other subtests of the same parent.
    	// Since SetEnv affects the whole process, we need to disallow it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        def "Attribute value on dependency only affects selection of this dependency (using component metadata rules)"() {
            given:
            repository {
                def modules = ['direct', 'transitive', 'leaf']
                modules.eachWithIndex { module, idx ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    		// computed for scanWorkExpected and extrapolates it to maxScanWork, the worst-case
    		// scan work. This keeps our assist ratio stable if the heap continues to grow.
    		//
    		// The effect of this mechanism is that assists stay flat in the face of heap
    		// growths. It's OK to use more memory this cycle to scan all the live heap,
    		// because the next GC cycle is inevitably going to use *at least* that much
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top