Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 1a2b3c (0.11 sec)

  1. pkg/controller/cronjob/utils_test.go

    	cj := batchv1.CronJob{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "mycronjob",
    			Namespace: "snazzycats",
    			UID:       types.UID("1a2b3c"),
    		},
    		Spec: batchv1.CronJobSpec{
    			Schedule:          "* * * * ?",
    			ConcurrencyPolicy: batchv1.AllowConcurrent,
    			JobTemplate: batchv1.JobTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/math/big/natconv_test.go

    }{
    	{nil, 2, "0"},
    	{nat{1}, 2, "1"},
    	{nat{0xc5}, 2, "11000101"},
    	{nat{03271}, 8, "3271"},
    	{nat{10}, 10, "10"},
    	{nat{1234567890}, 10, "1234567890"},
    	{nat{0xdeadbeef}, 16, "deadbeef"},
    	{nat{0x229be7}, 17, "1a2b3c"},
    	{nat{0x309663e6}, 32, "o9cov6"},
    	{nat{0x309663e6}, 62, "TakXI"},
    }
    
    func TestString(t *testing.T) {
    	// test invalid base explicitly
    	var panicStr string
    	func() {
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

     * For non-merge-queue branches this is the same as {@link #buildBranch}.
     * For merge-queue branches, this is the base branch.
     *
     * For example, for the merge queue branch "gh-readonly-queue/master/pr-12345-1a2b3c4d" the logical branch is "master".
     */
    val Project.logicalBranch: Provider<String>
        get() = buildBranch.map(::toMergeQueueBaseBranch)
    
    
    val Project.buildCommitId: Provider<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top