Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,920 for Hour (0.06 sec)

  1. cmd/kubeadm/app/apis/bootstraptoken/v1/defaults.go

    )
    
    const (
    	// DefaultTokenDuration specifies the default amount of time that a bootstrap token will be valid
    	// Default behaviour is 24 hours
    	DefaultTokenDuration = 24 * time.Hour
    )
    
    var (
    	// DefaultTokenUsages specifies the default functions a token will get
    	DefaultTokenUsages = bootstrapapi.KnownTokenUsages
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. security/pkg/server/ca/authenticate/oidc_test.go

    	expStr := strconv.FormatInt(time.Now().Add(time.Hour).Unix(), 10)
    	claims := `{"iss": "` + server.URL + `", "aud": ["baz.svc.id.goog"], "sub": "system:serviceaccount:bar:foo", "exp": ` + expStr + `}`
    	token, err := generateJWT(&key, []byte(claims))
    	if err != nil {
    		t.Fatalf("failed to generate JWT: %v", err)
    	}
    	// Create an expired JWT token
    	expiredStr := strconv.FormatInt(time.Now().Add(-time.Hour).Unix(), 10)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

            triggers {
                vcs {
                    branchFilter = "+:master"
                    enabled = enableTriggers
                }
                schedule {
                    schedulingPolicy = daily {
                        hour = 3
                    }
                    branchFilter = "+:master"
                    triggerBuild = always()
                    withPendingChangesOnly = false
                    enabled = enableTriggers
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "EvaluatorTimestampFormatPatternHourClockAmPmMismatch",
    		message:    "Time stamp format pattern contains a 12-hour hour of day format symbol but doesn't also contain an AM/PM field, or it contains a 24-hour hour of day format specifier and contains an AM/PM field in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. .github/workflows/stale-pr.yml

    name: 'Close stale PRs'
    on:
      schedule:
        # Execute every hour at xx:05 to avoid conflicts with other workflows
        - cron: '5 * * * *'
    
    permissions: {}
    
    jobs:
      stale:
        permissions:
          pull-requests: write
    
        runs-on: ubuntu-latest
        steps:
          - uses: actions/stale@v9
            with:
              operations-per-run: 50
              ascending: true
              exempt-all-milestones: true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. security/pkg/util/certutil.go

    			cert.NotAfter, now)
    	}
    	// Note: multiply time.Duration(int64) by an int (gracePeriodPercentage) will cause overflow (e.g.,
    	// when duration is time.Hour * 90000). So float64 is used instead.
    	gracePeriod := time.Duration(float64(cert.NotAfter.Sub(cert.NotBefore)) * (float64(cu.gracePeriodPercentage) / 100))
    	// waitTime is the duration between now and the grace period starts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. .github/stale.yml

      recent activity. It will be closed after 15 days if no further activity
      occurs. Thank you for your contributions.
    # Comment to post when removing the stale label.
    # unmarkComment: >
    #   Your comment here.
    
    # Comment to post when closing a stale Issue or Pull Request.
    # closeComment: >
    #   Your comment here.
    
    # Limit the number of actions per hour, from 1-30. Default is 30
    limitPerRun: 1
    
    # Limit to only `issues` or `pulls`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 04:36:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt_unix_test.go

    	if err := os.WriteFile(filepath.Join(fn), []byte("  package main"), 0o400); err != nil {
    		t.Fatal(err)
    	}
    
    	// Set mtime of the file in the past.
    	past := time.Now().Add(-time.Hour)
    	if err := os.Chtimes(fn, past, past); err != nil {
    		t.Fatal(err)
    	}
    
    	info, err := os.Stat(fn)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	defer func() { *write = false }()
    	*write = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 12:52:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    func getDefaultSelfSignedIstioCAOptions(fclient *fake.Clientset) *IstioCAOptions {
    	caCertTTL := time.Hour
    	defaultCertTTL := 30 * time.Minute
    	maxCertTTL := time.Hour
    	org := "test.ca.Org"
    	client := fake.NewSimpleClientset().CoreV1()
    	if fclient != nil {
    		client = fclient.CoreV1()
    	}
    	rootCertFile := ""
    	rootCertCheckInverval := time.Hour
    	rsaKeySize := 2048
    
    	caopts, _ := NewSelfSignedIstioCAOptions(context.Background(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    }
    
    // DateMicro returns the MicroTime corresponding to the supplied parameters
    // by wrapping time.Date.
    func DateMicro(year int, month time.Month, day, hour, min, sec, nsec int, loc *time.Location) MicroTime {
    	return MicroTime{time.Date(year, month, day, hour, min, sec, nsec, loc)}
    }
    
    // NowMicro returns the current local time.
    func NowMicro() MicroTime {
    	return MicroTime{time.Now()}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top