Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for tvp1 (0.04 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    	twoVolPod := st.MakePod().Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{VolumeID: "tvp1"},
    		},
    	}).Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{VolumeID: "tvp2"},
    		},
    	}).Obj()
    	splitVolsPod := st.MakePod().Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			HostPath: &v1.HostPathVolumeSource{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  2. cmd/storage-datatypes.go

    	return fi.Erasure.DataBlocks
    }
    
    // Equals checks if fi(FileInfo) matches ofi(FileInfo)
    func (fi FileInfo) Equals(ofi FileInfo) (ok bool) {
    	typ1, ok1 := crypto.IsEncrypted(fi.Metadata)
    	typ2, ok2 := crypto.IsEncrypted(ofi.Metadata)
    	if ok1 != ok2 {
    		return false
    	}
    	if typ1 != typ2 {
    		return false
    	}
    	if fi.IsCompressed() != ofi.IsCompressed() {
    		return false
    	}
    	if !fi.TransitionInfoEquals(ofi) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. test/inline.go

    	return x + y
    }
    
    func j(x int) int { // ERROR "can inline j"
    	switch {
    	case x > 0:
    		return x + 2
    	default:
    		return x + 1
    	}
    }
    
    func f2() int { // ERROR "can inline f2"
    	tmp1 := h
    	tmp2 := tmp1
    	return tmp2(0) // ERROR "inlining call to h"
    }
    
    var abc = errors.New("abc") // ERROR "inlining call to errors.New"
    
    var somethingWrong error
    
    // local closures can be inlined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. test/newinline.go

    	return x + y
    }
    
    func j(x int) int { // ERROR "can inline j"
    	switch {
    	case x > 0:
    		return x + 2
    	default:
    		return x + 1
    	}
    }
    
    func f2() int { // ERROR "can inline f2"
    	tmp1 := h
    	tmp2 := tmp1
    	return tmp2(0) // ERROR "inlining call to h"
    }
    
    var abc = errors.New("abc") // ERROR "inlining call to errors.New"
    
    var somethingWrong error
    
    // local closures can be inlined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    			},
    		},
    		{
    			// service entry multiAddrInternal
    			externalSvc: multiAddrInternal,
    			services: []*model.Service{
    				makeService("tcp1.com", "multiAddrInternal", "1.1.1.0/16",
    					map[string]int{"tcp-444": 444}, false, model.Passthrough),
    				makeService("tcp1.com", "multiAddrInternal", "2.2.2.0/16",
    					map[string]int{"tcp-444": 444}, false, model.Passthrough),
    				makeService("tcp2.com", "multiAddrInternal", "1.1.1.0/16",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. src/sort/sort_test.go

    	modes := []string{"copy", "reverse", "reverse1", "reverse2", "sort", "dither"}
    	var tmp1, tmp2 [1025]int
    	for _, n := range sizes {
    		for m := 1; m < 2*n; m *= 2 {
    			for dist := 0; dist < _NDist; dist++ {
    				j := 0
    				k := 1
    				data := tmp1[0:n]
    				for i := 0; i < n; i++ {
    					switch dist {
    					case _Sawtooth:
    						data[i] = i % m
    					case _Rand:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/lds_test.go

    			return m
    		}(),
    	})
    	adsc := s.Connect(&model.Proxy{ConfigNamespace: "ns1", IPAddresses: []string{"100.1.1.2"}}, nil, watchAll)
    
    	// Expect 2 listeners : 2 orig_dst, 2 outbound (http, tcp1)
    	if (len(adsc.GetHTTPListeners()) + len(adsc.GetTCPListeners())) != 4 {
    		t.Fatalf("Expected 4 listeners, got %d\n", len(adsc.GetHTTPListeners())+len(adsc.GetTCPListeners()))
    	}
    
    	// Expect 9 CDS clusters:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/order.go

    // The caller should order the right-hand side of the assignment before calling order.as2func.
    // It rewrites,
    //
    //	a, b, a = ...
    //
    // as
    //
    //	tmp1, tmp2, tmp3 = ...
    //	a, b, a = tmp1, tmp2, tmp3
    //
    // This is necessary to ensure left to right assignment order.
    func (o *orderState) as2func(n *ir.AssignListStmt) {
    	results := n.Rhs[0].Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top