Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 631 for penName (0.15 sec)

  1. internal/s3select/sql/jsondata/books.json

    {
        "title": "Murder on the Orient Express",
        "authorInfo": {
            "name": "Agatha Christie",
            "yearRange": [1890, 1976],
            "penName": "Mary Westmacott"
        },
        "genre": "Crime novel",
        "publicationHistory": [
            {
                "year": 1934,
                "publisher": "Collins Crime Club (London)",
                "type": "Hardcover",
                "pages": 256
            },
            {
                "year": 1934,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. test/rename.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    				PersistentVolumeName: &pvName,
    			},
    		},
    		Status: storagev1.VolumeAttachmentStatus{
    			Attached: status,
    		},
    	}
    }
    
    // Returns a persistentVolume object
    func NewPV(pvName, volumeName string) *v1.PersistentVolume {
    	return &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:  types.UID(pvName),
    			Name: pvName,
    		},
    		Spec: v1.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		expansionFailed bool
    		uncertainTest   bool
    		pvName          string
    		pvcSize         resource.Quantity
    		pvcStatusSize   resource.Quantity
    		oldPVSize       resource.Quantity
    		newPVSize       resource.Quantity
    	}{
    		{
    			name:          "expand-fs-volume",
    			volumeMode:    &fsMode,
    			pvName:        "pv",
    			pvcSize:       resource.MustParse("10G"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  5. releasenotes/notes/inbound-cluster-rename.yaml

    John Howard <******@****.***> 1606926239 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 02 16:23:59 UTC 2020
    - 232 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/ar.go

    				Exitf("%s missing archive entry at offset %d", name, off)
    			}
    			pname := fmt.Sprintf("%s(%s)", name, arhdr.name)
    			l = atolwhex(arhdr.size)
    
    			pkname := filepath.Base(name)
    			if i := strings.LastIndex(pkname, ".a"); i >= 0 {
    				pkname = pkname[:i]
    			}
    			libar := sym.Library{Pkg: pkname}
    			h := ldobj(ctxt, f, &libar, l, pname, name)
    			if h.ld == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/util/ipvs_linux_test.go

    				FWMark:        0,
    				SchedName:     "",
    				Flags:         uint32(FlagPersistent + FlagHashed),
    				Timeout:       0,
    				Netmask:       0xffffffff,
    				AddressFamily: unix.AF_INET,
    				Address:       nil,
    				PEName:        "",
    			},
    			VirtualServer{
    				Address:   netutils.ParseIPSloppy("0.0.0.0"),
    				Protocol:  "TCP",
    				Port:      80,
    				Scheduler: "",
    				Flags:     ServiceFlags(FlagPersistent),
    				Timeout:   0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_retract_rename_v1.0.0-bad.txt

    Module example.com/retract/rename is renamed in a later version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.0.0-bad"}
    -- .mod --
    module example.com/retract/rename
    
    go 1.16
    -- go.mod --
    module example.com/retract/rename
    
    go 1.16
    -- rename.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 374 bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    		}
    
    		// The PVC for an ephemeral volume must be owned by the pod.
    		if isEphemeral {
    			if err := ephemeral.VolumeIsForPod(pod, pvc); err != nil {
    				return err
    			}
    		}
    
    		pvName := pvc.Spec.VolumeName
    		if pvName == "" {
    			// PVC is not bound. It was either deleted and created again or
    			// it was forcefully unbound by admin. The pod can still use the
    			// original PV where it was bound to, so we count the volume if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_executor_test.go

    	t.Parallel()
    
    	// Arrange
    	ch, quit, oe := setup()
    	volumesToMount := make([]VolumeToMount, numVolumesToAttach)
    	pdName := "pd-volume"
    	volumeName := v1.UniqueVolumeName(pdName)
    	// Act
    	for i := range volumesToMount {
    		podName := "pod-" + strconv.Itoa(i+1)
    		pod := getTestPodWithGCEPD(podName, pdName)
    		volumesToMount[i] = VolumeToMount{
    			Pod:                pod,
    			VolumeName:         volumeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top