Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for volData (0.12 sec)

  1. pkg/volume/csi/csi_test.go

    			t.Log("csiTest.VolumeAll JSON datafile generated OK:", dataFile)
    
    			// ******** Volume Reconstruction ************* //
    			volPath := filepath.Dir(csiMounter.GetPath())
    			t.Log("csiTest.VolumeAll entering plugin.ConstructVolumeSpec for path", volPath)
    			rec, err := volPlug.ConstructVolumeSpec(test.volName, volPath)
    			if err != nil {
    				t.Fatalf("csiTest.VolumeAll plugin.ConstructVolumeSpec failed: %s", err)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  2. docs/pt/docs/deployment/https.md

    ## Let's Encrypt
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 05 10:40:05 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/volume/csi/csi_block.go

    		return errors.New(log("failed to delete volume staging path [%s]: %v", stagingPath, err))
    	}
    
    	// Remove everything under xxx/plugins/kubernetes.io/csi/volumeDevices/<volume name>.
    	// At this point it contains only "data/vol_data.json" and empty "dev/".
    	volumeDir := getVolumePluginDir(m.specName, m.plugin.host)
    	mounter := m.plugin.host.GetMounter(m.plugin.GetPluginName())
    	if err := removeall.RemoveAllOneFilesystem(mounter, volumeDir); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. docs/pt/docs/deployment.md

    ### Vamos encriptar
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K 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