Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for listVols (0.11 sec)

  1. cmd/naughty-disk_test.go

    	if err := d.calcError(); err != nil {
    		return err
    	}
    	return d.disk.MakeVol(ctx, volume)
    }
    
    func (d *naughtyDisk) ListVols(ctx context.Context) (vols []VolInfo, err error) {
    	if err := d.calcError(); err != nil {
    		return nil, err
    	}
    	return d.disk.ListVols(ctx)
    }
    
    func (d *naughtyDisk) StatVol(ctx context.Context, volume string) (vol VolInfo, err error) {
    	if err := d.calcError(); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. cmd/storage-interface.go

    	// Volume operations.
    	MakeVol(ctx context.Context, volume string) (err error)
    	MakeVolBulk(ctx context.Context, volumes ...string) (err error)
    	ListVols(ctx context.Context) (vols []VolInfo, err error)
    	StatVol(ctx context.Context, volume string) (vol VolInfo, err error)
    	DeleteVol(ctx context.Context, volume string, forceDelete bool) (err error)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pkg/kubelet/userns/userns_manager_switch_test.go

    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, pkgfeatures.UserNamespacesSupport, true)
    
    	listPods := []types.UID{"pod-1", "pod-2"}
    	pods := []types.UID{"pod-3", "pod-4"}
    	testUserNsPodsManager := &testUserNsPodsManager{
    		podDir:  t.TempDir(),
    		podList: listPods,
    	}
    
    	m, err := MakeUserNsManager(testUserNsPodsManager)
    	require.NoError(t, err)
    
    	// Record the pods on disk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/tool/tool.go

    			fmt.Fprintf(os.Stderr, "go tool %s: %s\n", toolName, err)
    		}
    		base.SetExitStatus(1)
    		return
    	}
    }
    
    // listTools prints a list of the available tools in the tools directory.
    func listTools() {
    	f, err := os.Open(build.ToolDir)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "go: no tool directory: %s\n", err)
    		base.SetExitStatus(2)
    		return
    	}
    	defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_activity_listener_test.cc

    #include "tensorflow/compiler/jit/xla_activity_listener.h"
    
    #include <cstdlib>
    
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/ops/array_ops.h"
    #include "tensorflow/cc/ops/list_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/core/common_runtime/direct_session.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. docs/es/docs/python-types.md

    ```
    
    ### Edítalo
    
    Es un programa muy simple.
    
    Ahora, imagina que lo estás escribiendo desde ceros.
    
    En algún punto habrías comenzado con la definición de la función, tenías los parámetros listos...
    
    Pero, luego tienes que llamar "ese método que convierte la primera letra en una mayúscula".
    
    Era `upper`? O era `uppercase`? `first_uppercase`? `capitalize`?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top