Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for revision2 (0.34 sec)

  1. pkg/printers/internalversion/printers.go

    		}
    		gvk := gv.WithKind(controllerRef.Kind)
    		controllerName = formatResourceName(gvk.GroupKind(), controllerRef.Name, withKind)
    	}
    	revision := obj.Revision
    	age := translateTimestampSince(obj.CreationTimestamp)
    	row.Cells = append(row.Cells, obj.Name, controllerName, revision, age)
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    						{
    							Controller: boolP(true),
    							APIVersion: "apps/v1",
    							Kind:       "DaemonSet",
    							Name:       "foo",
    						},
    					},
    				},
    				Revision: 1,
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "daemonset.apps/foo", int64(1), "0s"}}},
    		},
    		{
    			history: apps.ControllerRevision{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			indexers:      nil,
    			expectedError: false,
    		},
    		{
    			name: "normal indexers",
    			indexers: &cache.Indexers{
    				"f:spec.nodeName":            emptyIndexFunc,
    				"l:controller-revision-hash": emptyIndexFunc,
    			},
    			expectedError: false,
    		},
    		{
    			name: "too short indexers",
    			indexers: &cache.Indexers{
    				"f": emptyIndexFunc,
    			},
    			expectedError: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    //	Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
    //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // within a work space.
    //
    // # Remote import paths
    //
    // Certain import paths also
    // describe how to obtain the source code for the package using
    // a revision control system.
    //
    // A few common code hosting sites have special syntax:
    //
    //	Bitbucket (Git, Mercurial)
    //
    //		import "bitbucket.org/user/project"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top