Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 342 for minuti (0.12 sec)

  1. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/TimeFormattingTest.groovy

            "10 seconds"        | "1 minute"          | seconds(42.1234)                    | "42s"
            "10 seconds"        | "1 minute"          | seconds(60)                         | "1m"
            "1 minute"          | "10 minutes"        | seconds(61)                         | "1m 1s"
            "1 minute"          | "10 minutes"        | minutes(1)                          | "1m"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. .github/workflows/mint.yml

    name: Mint Tests
    
    on:
      pull_request:
        branches:
          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      mint-test:
        runs-on: mint
        timeout-minutes: 120
        steps:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. cmd/metacache.go

    		// Keep for 15 minutes after we last saw the client.
    		// Since the cache is finished keeping it a bit longer doesn't hurt us.
    		return false
    	case cache.status == scanStateError || cache.status == scanStateNone:
    		// Remove failed listings after 5 minutes.
    		return time.Since(cache.lastUpdate) > 5*time.Minute
    	}
    	return true
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. internal/http/transports.go

    	// 		// ReadIdleTimeout is the timeout after which a health check using ping
    	// 		// frame will be carried out if no frame is received on the
    	// 		// connection. 5 minutes is sufficient time for any idle connection.
    	// 		trhttp2.ReadIdleTimeout = 5 * time.Minute
    	// 		// PingTimeout is the timeout after which the connection will be closed
    	// 		// if a response to Ping is not received.
    	// 		trhttp2.PingTimeout = dialTimeout
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/time/time_test.go

    	{Minute, 1, Minute},
    	{2 * Minute, Minute, 2 * Minute},
    	{2*Minute + 10*Second, Minute, 2 * Minute},
    	{2*Minute + 30*Second, Minute, 3 * Minute},
    	{2*Minute + 50*Second, Minute, 3 * Minute},
    	{-Minute, 1, -Minute},
    	{-2 * Minute, Minute, -2 * Minute},
    	{-2*Minute - 10*Second, Minute, -2 * Minute},
    	{-2*Minute - 30*Second, Minute, -3 * Minute},
    	{-2*Minute - 50*Second, Minute, -3 * Minute},
    	{8e18, 3e18, 9e18},
    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. docs/debugging/pprofgoparser/main.go

    			}
    		case record:
    			save(line)
    		default:
    			z := goroutinesRE.FindStringSubmatch(line)
    			if len(z) == 3 {
    				if z[2] != "" {
    					a, _ := strconv.Atoi(z[2])
    					t = time.Duration(a) * time.Minute
    					save(line)
    					record = true
    				} else {
    					skip = true
    				}
    			}
    		}
    	}
    
    	return ret, nil
    }
    
    const helpUsage = `
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 06 11:43:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/cache_based_manager_test.go

    	fakeClient.ClearActions()
    
    	// Set 5-minute ttl and see if this works.
    	ttl = time.Duration(5) * time.Minute
    	store.Get("ns", "name")
    	actions = fakeClient.Actions()
    	assert.Equal(t, 0, len(actions), "unexpected actions: %#v", actions)
    	// Still no effect after 4 minutes.
    	fakeClock.Step(4 * time.Minute)
    	store.Get("ns", "name")
    	actions = fakeClient.Actions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/utils_test.go

    					LastScheduleTime: &metav1HalfPastTheHour,
    				},
    			},
    			now:                   *deltaTimeAfterTopOfTheHour(24*time.Hour + 31*time.Minute),
    			expectedRecentTime:    deltaTimeAfterTopOfTheHour(24*time.Hour + 30*time.Minute),
    			expectedEarliestTime:  *deltaTimeAfterTopOfTheHour(30 * time.Minute),
    			expectedTooManyMissed: fewMissed,
    		},
    		{
    			name: "another complex schedule",
    			cj: &batchv1.CronJob{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				NodeStatusReportFrequency:                 metav1.Duration{Duration: 1 * time.Minute},
    				NodeLeaseDurationSeconds:                  40,
    				ContainerRuntimeEndpoint:                  "unix:///run/containerd/containerd.sock",
    				ImageMinimumGCAge:                         metav1.Duration{Duration: 2 * time.Minute},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. src/time/time.go

    func (d Duration) Seconds() float64 {
    	sec := d / Second
    	nsec := d % Second
    	return float64(sec) + float64(nsec)/1e9
    }
    
    // Minutes returns the duration as a floating point number of minutes.
    func (d Duration) Minutes() float64 {
    	min := d / Minute
    	nsec := d % Minute
    	return float64(min) + float64(nsec)/(60*1e9)
    }
    
    // Hours returns the duration as a floating point number of hours.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top