Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,030 for name3 (0.24 sec)

  1. hack/verify-pkg-names.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script verifies whether codes follow golang convention.
    # Usage: `hack/verify-pkg-names.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 21:06:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/controller_ref_test.go

    	controllerRef.BlockOwnerDeletion = nil
    	var falseRef = false
    	obj2 := &metaObj{
    		ObjectMeta: ObjectMeta{
    			UID:  "uid2",
    			Name: "name1",
    			OwnerReferences: []OwnerReference{
    				{
    					Name:       "owner1",
    					Controller: &falseRef,
    				},
    				*controllerRef,
    				{
    					Name:       "owner2",
    					Controller: &falseRef,
    				},
    			},
    		},
    	}
    
    	if GetControllerOf(obj1) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 05:14:33 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. releasenotes/notes/svc-external-name.yaml

    dwq <******@****.***> 1676903817 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 14:36:57 UTC 2023
    - 225 bytes
    - Viewed (0)
  4. tests/scanner_valuer_test.go

    		Bytes:    []byte("byte"),
    		Num:      18,
    		Strings:  StringsSlice{"a", "b", "c"},
    		Structs: StructsSlice{
    			{"name1", "value1"},
    			{"name2", "value2"},
    		},
    		Role:             Role{Name: "admin"},
    		ExampleStruct:    ExampleStruct{"name", "value1"},
    		ExampleStructPtr: &ExampleStruct{"name", "value2"},
    	}
    
    	if err := DB.Create(&data).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 07 07:02:07 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. releasenotes/notes/external-name-on.yaml

          * Because the destination DNS name is treated as opaque, we cannot apply Istio policies to it as expected. For example, if I point
            an external name at another in-cluster Service (for example, `example.default.svc.cluster.local`), mTLS would not be used.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		for _, n := range test.nodes {
    			dsw.AddNode(n.name)
    			nodes = append(nodes, n.name)
    			for _, podName := range n.podNames {
    				volumeName := v1.UniqueVolumeName("volume-name")
    				volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    				volumeSpec.PersistentVolume.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce}
    				uid := string(n.name) + "-" + podName // unique UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  7. releasenotes/notes/fix-external-name.yaml

    John Howard <******@****.***> 1713547188 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:48 UTC 2024
    - 264 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/invalid-listener-name.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid-listener-name
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: bad>
        protocol: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 194 bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/cmds.go

    			name := filepath.FromSlash(args[0])
    			path := name
    			if !strings.Contains(name, string(filepath.Separator)) {
    				var err error
    				path, err = lookPath(s, name)
    				if err != nil {
    					return nil, err
    				}
    			}
    
    			return startCommand(s, name, path, args[1:], cancel, waitDelay)
    		})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. releasenotes/notes/alt-stat-name.yaml

    Rama Chavali <******@****.***> 1716199771 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 10:09:31 UTC 2024
    - 184 bytes
    - Viewed (0)
Back to top