Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 238 for mate (0.13 sec)

  1. src/time/time_test.go

    }{
    	{Time{}, Time{}, Duration(0)},
    	{Date(2009, 11, 23, 0, 0, 0, 1, UTC), Date(2009, 11, 23, 0, 0, 0, 0, UTC), Duration(1)},
    	{Date(2009, 11, 23, 0, 0, 0, 0, UTC), Date(2009, 11, 24, 0, 0, 0, 0, UTC), -24 * Hour},
    	{Date(2009, 11, 24, 0, 0, 0, 0, UTC), Date(2009, 11, 23, 0, 0, 0, 0, UTC), 24 * Hour},
    	{Date(-2009, 11, 24, 0, 0, 0, 0, UTC), Date(-2009, 11, 23, 0, 0, 0, 0, UTC), 24 * Hour},
    	{Time{}, Date(2109, 11, 23, 0, 0, 0, 0, UTC), minDuration},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    thi...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    		modTime  time.Time
    		days     ExpirationDays
    		expected time.Time
    	}{
    		{
    			time.Date(2020, time.March, 15, 10, 10, 10, 0, time.UTC),
    			4,
    			time.Date(2020, time.March, 20, 0, 0, 0, 0, time.UTC),
    		},
    		{
    			time.Date(2020, time.March, 15, 0, 0, 0, 0, time.UTC),
    			1,
    			time.Date(2020, time.March, 17, 0, 0, 0, 0, time.UTC),
    		},
    	}
    
    	for i, tc := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    > Task :createContainer UP-TO-DATE
    > Task :dockerUp UP-TO-DATE
    > Task :dockerTest UP-TO-DATE
    > Task :removeContainer UP-TO-DATE
    > Task :dockerStop UP-TO-DATE
    ```
    
    Starting with Gradle 7.5, `mustRunAfter` constraints are fully honored yielding the following order of execution:
    
    ```
    > Task :removeContainer UP-TO-DATE
    > Task :createContainer UP-TO-DATE
    > Task :dockerUp UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:untracked_external_tool]]
    === Integrate an external tool which does its own up-to-date checking
    
    Sometimes you want to integrate an external tool like Git or Npm, both of which do their own up-to-date checking.
    In that case it doesn't make much sense for Gradle to also do up-to-date checks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("processing a.jar to make red")
            outputContains("processing a.jar using [a.jar.red]")
            outputContains("processing b.jar using [a.jar.red]")
            outputContains("result = [a.jar.green, b.jar.green]")
    
            when:
            configurationCacheRun(":resolve")
    
            then: // everything up-to-date
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  4,
    		},
    		{
    			name:             "date array with all",
    			schemaGenerator:  genArrayWithRule("date", "self.all(x, true)"),
    			expectedCalcCost: 725936,
    			setMaxElements:   15,
    			expectedSetCost:  47,
    		},
    		{
    			name:             "index of date array",
    			schemaGenerator:  genArrayWithRule("date", "self[2].getDayOfMonth() == 13"),
    			expectedCalcCost: 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/time/time.go

    	}
    	abs = uint64(sec + (unixToInternal + internalToAbsolute))
    	return
    }
    
    // Date returns the year, month, and day in which t occurs.
    func (t Time) Date() (year int, month Month, day int) {
    	year, month, day, _ = t.date(true)
    	return
    }
    
    // Year returns the year in which t occurs.
    func (t Time) Year() int {
    	year, _, _, _ := t.date(false)
    	return year
    }
    
    // Month returns the month of the year specified by t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	if features.FilterGatewayClusterConfig {
    		ps.virtualServiceIndex.destinationsByGateway = make(map[string]sets.String)
    	}
    
    	virtualServices := env.List(gvk.VirtualService, NamespaceAll)
    
    	// values returned from ConfigStore.List are immutable.
    	// Therefore, we make a copy
    	vservices := make([]config.Config, len(virtualServices))
    
    	for i := range vservices {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    	}
    
    	region := globalSite.Region()
    	date := UTCNow()
    	scope := getScope(date, region)
    	credential := fmt.Sprintf("%s/%s", accessKeyID, scope)
    
    	// Set URL query.
    	query := req.URL.Query()
    	query.Set("X-Amz-Algorithm", signV4Algorithm)
    	query.Set("X-Amz-Date", date.Format(iso8601Format))
    	query.Set("X-Amz-Expires", strconv.FormatInt(expires, 10))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top