Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 10h (0.5 sec)

  1. cmd/batch-expire_test.go

      
        - type: deleted # objects with delete marker as their latest version
          name: NAME # match object names that satisfy the wildcard expression.
          olderThan: 10h # match objects older than this value (e.g. 7d10h31s)
          createdBefore: "2006-01-02T15:04:05.00Z" # match objects created before "date"
          purge:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    Gradle needs specific information to find a dependency.
    Let's look at `libs.guava` -> `com.google.guava:guava:32.1.2-jre` and `libs.junit.jupiter` -> `org.junit.jupiter:junit-jupiter-api:5.9.1`; they are broken down as follows:
    
    [cols="10h,30,40,20"]
    |===
    | |Description | com.google.guava:guava:32.1.2-jre | org.junit.jupiter:junit-jupiter-api:5.9.1
    
    |Group
    |identifier of an organization
    |`com.google.guava`
    |`org.junit.jupiter`
    
    |Name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. cmd/batch-expire.go

    //
    //     - type: deleted # objects with delete marker as their latest version
    //       name: NAME # match object names that satisfy the wildcard expression.
    //       olderThan: 10h # match objects older than this value (e.g. 7d10h31s)
    //       createdBefore: "2006-01-02T15:04:05.00Z" # match objects created before "date"
    //       purge:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	// d.Truncate(    2s) = 1h15m30s
    	// d.Truncate(  1m0s) = 1h15m0s
    	// d.Truncate( 10m0s) = 1h10m0s
    	// d.Truncate(1h0m0s) = 1h0m0s
    }
    
    func ExampleParseDuration() {
    	hours, _ := time.ParseDuration("10h")
    	complex, _ := time.ParseDuration("1h10m10s")
    	micro, _ := time.ParseDuration("1µs")
    	// The package also accepts the incorrect but common prefix u for micro.
    	micro2, _ := time.ParseDuration("1us")
    
    	fmt.Println(hours)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    	"--controllers=foo,bar",
    	"--disable-attach-detach-reconcile-sync=true",
    	"--enable-dynamic-provisioning=false",
    	"--enable-garbage-collector=false",
    	"--enable-hostpath-provisioner=true",
    	"--cluster-signing-duration=10h",
    	"--flex-volume-plugin-dir=/flex-volume-plugin",
    	"--horizontal-pod-autoscaler-sync-period=45s",
    	"--horizontal-pod-autoscaler-downscale-stabilization=3m",
    	"--horizontal-pod-autoscaler-cpu-initialization-period=90s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top