Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for vols (0.14 sec)

  1. internal/grid/benchmark_test.go

    					// This will give an estimate of the total ops/s.
    					latency := float64(atomic.LoadInt64(&lat)) / float64(time.Millisecond)
    					b.ReportMetric(float64(n)*float64(ops)/spent.Seconds(), "vops/s")
    					b.ReportMetric(latency/float64(ops), "ms/op")
    				}
    			})
    		}
    	})
    	b.Run("rpc", func(b *testing.B) {
    		for par := 1; par <= 32; par *= 2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi_test.go

    	}
    }
    
    func TestPluginVolume(t *testing.T) {
    	vol := &v1.Volume{
    		Name: "vol1",
    		VolumeSource: v1.VolumeSource{
    			ISCSI: &v1.ISCSIVolumeSource{
    				TargetPortal: "127.0.0.1:3260",
    				IQN:          "iqn.2014-12.server:storage.target01",
    				FSType:       "ext4",
    				Lun:          0,
    			},
    		},
    	}
    	doTestPlugin(t, volume.NewSpecFromVolume(vol))
    }
    
    func TestPluginPersistentVolume(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  3. cmd/signature-v4.go

    	var headers []string
    	vals := make(http.Header)
    	for k, vv := range signedHeaders {
    		k = strings.ToLower(k)
    		headers = append(headers, k)
    		vals[k] = vv
    	}
    	sort.Strings(headers)
    
    	var buf bytes.Buffer
    	for _, k := range headers {
    		buf.WriteString(k)
    		buf.WriteByte(':')
    		for idx, v := range vals[k] {
    			if idx > 0 {
    				buf.WriteByte(',')
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_fr.properties

    labels.index_lang	=	Langues préférées
    labels.index_sort	=	Trier
    labels.index_num	=	résultats par page
    labels.logout_title	=	Se déconnecter
    labels.logout	=	Se déconnecter
    labels.do_you_want_to_logout	=	Voulez-vous vous déconnecter ?
    labels.logout_button	=	Se déconnecter
    labels.profile	=	Changer le mot de passe
    labels.administration	=	Administration
    labels.profile_button	=	Profil
    labels.profile.title	=	Profil
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path_test.go

    	plug, err := plugMgr.FindPluginByName(hostPathPluginName)
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    
    	volPath := "/tmp/vol1"
    	spec := &v1.Volume{
    		Name:         "vol1",
    		VolumeSource: v1.VolumeSource{HostPath: &v1.HostPathVolumeSource{Path: volPath, Type: newHostPathType(string(v1.HostPathDirectoryOrCreate))}},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    type Map struct {
    	Vals         map[ssa.ID]objw.StackMapIndex
    	UnsafeVals   map[ssa.ID]bool
    	UnsafeBlocks map[ssa.ID]bool
    	// The set of live, pointer-containing variables at the DeferReturn
    	// call (only set when open-coded defers are used).
    	DeferReturn objw.StackMapIndex
    }
    
    func (m *Map) reset() {
    	if m.Vals == nil {
    		m.Vals = make(map[ssa.ID]objw.StackMapIndex)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/server.go

    	options.AddCustomGlobalFlags(namedFlagSets.FlagSet("generic"))
    	for _, f := range namedFlagSets.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
    	cliflag.SetUsageAndHelpFunc(cmd, namedFlagSets, cols)
    
    	return cmd
    }
    
    // Run runs the specified APIServer.  This should never exit.
    func Run(ctx context.Context, opts options.CompletedOptions) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        } else if (auto attr = mlir::dyn_cast<mlir::ArrayAttr>(a)) {
          std::vector<int64_t> vals;
          for (mlir::Attribute a : attr.getValue()) {
            auto i = mlir::dyn_cast<mlir::IntegerAttr>(a);
            if (!i)
              return errors::Unimplemented(
                  "Expected 64-bit integer array attributes!");
            vals.push_back(i.getInt());
          }
          mlir::OpBuilder builder(attr.getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. src/context/x_test.go

    	const (
    		minLayers = 30
    	)
    	type value int
    	var (
    		vals      []*value
    		cancels   []CancelFunc
    		numTimers int
    		ctx       = Background()
    	)
    	for i := 0; i < minLayers || numTimers == 0 || len(cancels) == 0 || len(vals) == 0; i++ {
    		switch r.Intn(3) {
    		case 0:
    			v := new(value)
    			ctx = WithValue(ctx, v, v)
    			vals = append(vals, v)
    		case 1:
    			var cancel CancelFunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. tensorflow/c/kernels.cc

      }                                                                            \
      void TF_OpKernelConstruction_GetAttr##func##List(                            \
          TF_OpKernelConstruction* ctx, const char* attr_name, c_type* vals,       \
          int max_vals, TF_Status* status) {                                       \
        TF_SetStatus(status, TF_OK, "");                                           \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top