Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 203 for vols (0.19 sec)

  1. src/log/slog/value_test.go

    		GroupValue(Bool("b", true), Int("j", 4)),
    		DurationValue(3 * time.Second),
    		DurationValue(2 * time.Second),
    		StringValue("foo"),
    		StringValue("fuu"),
    	}
    	for i, v1 := range vals {
    		for j, v2 := range vals {
    			got := v1.Equal(v2)
    			want := i == j
    			if got != want {
    				t.Errorf("%v.Equal(%v): got %t, want %t", v1, v2, got, want)
    			}
    		}
    	}
    }
    
    func panics(f func()) (b bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xds_cache_test.go

    		v := mkv(n)
    		time.Sleep(time.Millisecond * time.Duration(rand.Intn(100)))
    		req := &model.PushRequest{Start: start}
    		c.Add(k, req, v)
    	}
    	// 5 round of xds push
    	for vals := 0; vals < 5; vals++ {
    		c.ClearAll()
    		n.Inc()
    		start := time.Now()
    		for i := 0; i < 5; i++ {
    			go work(start, n.Load())
    		}
    		retry.UntilOrFail(t, func() bool {
    			val := c.Get(k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/csi/csi_mounter_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if vol.DeviceMountPath != devicePath {
    				t.Errorf("DeviceMountPath not sent properly to CSI driver: %s, %s", vol.DeviceMountPath, devicePath)
    			}
    
    			if !reflect.DeepEqual(vol.MountFlags, csiMounter.spec.PersistentVolume.Spec.MountOptions) {
    				t.Errorf("unexpected mount flags passed to driver: %+v", vol.MountFlags)
    			}
    
    			if vol.FSType != tc.fsType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

            for (int i = 0; i < chars.length; i++) {
                chars[i] = ch;
            }
            return new String(chars);
        }
    
        private String trimToConsole(int cols, int prefixLength, String str) {
            int consoleWidth = cols - 1;
            int remainingWidth = consoleWidth - prefixLength;
    
            if (consoleWidth < 0) {
                return str;
            }
            if (remainingWidth <= 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/util.go

    	return serviceClusterSetLocalHostname(config.NamespacedName(obj))
    }
    
    func labelRequirement(key string, op selection.Operator, vals []string, opts ...field.PathOption) *klabels.Requirement {
    	out, err := klabels.NewRequirement(key, op, vals, opts...)
    	if err != nil {
    		panic(fmt.Sprintf("failed creating requirements for Service: %v", err))
    	}
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/hu/stopwords.txt

    tehát
    teljes
    tovább
    továbbá
    több
    úgy
    ugyanis
    új
    újabb
    újra
    után
    utána
    utolsó
    vagy
    vagyis
    valaki
    valami
    valamint
    való
    vagyok
    van
    vannak
    volt
    voltam
    voltak
    voltunk
    vissza
    vele
    viszont
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top