Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for volData (0.15 sec)

  1. pkg/volume/csi/csi_plugin.go

    		return ret, nil
    	}
    
    	ret.Spec = p.constructPVSourceSpec(volData[volDataKey.specVolID], volData[volDataKey.driverName], volData[volDataKey.volHandle])
    	return ret, nil
    }
    
    // constructVolSourceSpec constructs volume.Spec with CSIVolumeSource
    func (p *csiPlugin) constructVolSourceSpec(volSpecName, driverName string) *volume.Spec {
    	vol := &api.Volume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter.go

    		}
    		// remove volume path
    		klog.V(4).Info(log("deleting volume path [%s]", volPath))
    		if err := os.Remove(volPath); err != nil && !os.IsNotExist(err) {
    			return errors.New(log("failed to delete volume path [%s]: %v", volPath, err))
    		}
    	}
    	return nil
    }
    
    // makeVolumeHandle returns csi-<sha256(podUID,volSourceSpecName)>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  3. pkg/volume/csi/csi_mounter_test.go

    )
    
    func prepareVolumeInfoFile(mountPath string, plug *csiPlugin, specVolumeName, volumeID, driverName, lifecycleMode, seLinuxMountContext string) error {
    	nodeName := string(plug.host.GetNodeName())
    	volData := map[string]string{
    		volDataKey.specVolID:           specVolumeName,
    		volDataKey.volHandle:           volumeID,
    		volDataKey.driverName:          driverName,
    		volDataKey.nodeName:            nodeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. pkg/volume/emptydir/empty_dir_test.go

    		t.Errorf("Got a nil Mounter")
    	}
    
    	volPath := mounter.GetPath()
    	if volPath != volumePath {
    		t.Errorf("Got unexpected path: %s", volPath)
    	}
    	if config.volumeDirExists {
    		if err := os.MkdirAll(volPath, perm); err != nil {
    			t.Errorf("fail to create path: %s", volPath)
    		}
    	}
    
    	// Stat the directory and check the permission bits
    	testSetUp(mounter, metadataDir, volPath)
    
    	log := physicalMounter.GetLog()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. lib/time/zoneinfo.zip

    Asia/Famagusta Asia/Gaza Asia/Harbin Asia/Hebron Asia/Ho_Chi_Minh Asia/Hong_Kong Asia/Hovd Asia/Irkutsk Asia/Istanbul Asia/Jakarta Asia/Jayapura Asia/Jerusalem Asia/Kabul Asia/Kamchatka Asia/Karachi Asia/Kashgar Asia/Kathmandu Asia/Katmandu Asia/Khandyga Asia/Kolkata Asia/Krasnoyarsk Asia/Kuala_Lumpur Asia/Kuching Asia/Kuwait Asia/Macao Asia/Macau Asia/Magadan Asia/Makassar Asia/Manila Asia/Muscat Asia/Nicosia Asia/Novokuznetsk Asia/Novosibirsk Asia/Omsk Asia/Oral Asia/Phnom_Penh Asia/Pontianak Asia/Pyongyang...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (1)
  6. docs/pt/docs/tutorial/body.md

    Você também poderá receber verificações de erros para operações de tipos incorretas:
    
    <img src="/img/tutorial/body/image04.png">
    
    Isso não é por acaso, todo o framework foi construído em volta deste design.
    
    E foi imensamente testado na fase de design, antes de qualquer implementação, para garantir que funcionaria para todos os editores de texto.
    
    Houveram mudanças no próprio Pydantic para que isso fosse possível.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. docs/pt/docs/async.md

    Enquanto espera e conversa com seu _crush_ :heart_eyes:, de tempos em tempos, você verifica o número de chamada exibido no balcão para ver se já é sua vez.
    
    Então a certo ponto, é finalmente sua vez. Você vai no balcão, pega seus hambúrgueres e volta para a mesa.
    
    Você e seu _crush_ :heart_eyes: comem os hambúrgueres e aproveitam o tempo.
    
    ---
    
    Imagine que você seja o computador  / programa nessa história.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. docs/it/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Riepilogo
    
    Ricapitolando, è sufficiente dichiarare **una sola volta** i tipi dei parametri, del body, ecc. come parametri di funzioni.
    
    Questo con le annotazioni per i tipi standard di Python.
    
    Non c'è bisogno di imparare una nuova sintassi, metodi o classi specifici a una libreria, ecc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		keytype := decodetypeMapKey(d.ldr, d.arch, gotype)
    		valtype := decodetypeMapValue(d.ldr, d.arch, gotype)
    		keydata := d.ldr.Data(keytype)
    		valdata := d.ldr.Data(valtype)
    		keysize, valsize := decodetypeSize(d.arch, keydata), decodetypeSize(d.arch, valdata)
    		keytype, valtype = d.walksymtypedef(d.defgotype(keytype)), d.walksymtypedef(d.defgotype(valtype))
    
    		// compute size info like hashmap.c does.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_attacher_test.go

    					// for creating this file. It shouldn't exist.
    					_, err := os.Stat(filepath.Join(parent, volDataFileName))
    					if !os.IsNotExist(err) {
    						t.Errorf("vol_data.json should not exist: %v", err)
    					}
    					_, err = os.Stat(filePath)
    					if os.IsNotExist(err) {
    						t.Errorf("expecting file to exist after err received: %v", err)
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
Back to top