Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for desc1 (0.17 sec)

  1. pkg/proxy/winkernel/proxier.go

    }
    
    type localPort struct {
    	desc     string
    	ip       string
    	port     int
    	protocol string
    }
    
    func (lp *localPort) String() string {
    	return fmt.Sprintf("%q (%s:%d/%s)", lp.desc, lp.ip, lp.port, lp.protocol)
    }
    
    func Enum(p v1.Protocol) uint16 {
    	if p == v1.ProtocolTCP {
    		return 6
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    		Fprint(&buf, x)
    	}
    }
    
    var mallocBuf bytes.Buffer
    var mallocPointer *int // A pointer so we know the interface value won't allocate.
    
    var mallocTest = []struct {
    	count int
    	desc  string
    	fn    func()
    }{
    	{0, `Sprintf("")`, func() { _ = Sprintf("") }},
    	{1, `Sprintf("xxx")`, func() { _ = Sprintf("xxx") }},
    	{0, `Sprintf("%x")`, func() { _ = Sprintf("%x", 7) }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    	}
    }
    
    func wantReg(ctxt *obj.Link, ins *instruction, pos string, descr string, r, min, max uint32) {
    	if r < min || r > max {
    		var suffix string
    		if r != obj.REG_NONE {
    			suffix = fmt.Sprintf(" but got non-%s register %s", descr, RegName(int(r)))
    		}
    		ctxt.Diag("%v: expected %s register in %s position%s", ins, descr, pos, suffix)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. src/time/time_test.go

    	Sleep(100 * Millisecond)
    
    	// Back to Los Angeles for subsequent tests:
    	ForceUSPacificForTesting()
    }
    
    var (
    	t Time
    	u int64
    )
    
    var mallocTest = []struct {
    	count int
    	desc  string
    	fn    func()
    }{
    	{0, `time.Now()`, func() { t = Now() }},
    	{0, `time.Now().UnixNano()`, func() { u = Now().UnixNano() }},
    	{0, `time.Now().UnixMilli()`, func() { u = Now().UnixMilli() }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    			if err != nil {
    				return nil, fmt.Errorf("read name failed: %v", err)
    			}
    			desc, err := readwithpad(r, descsize)
    			if err != nil {
    				return nil, fmt.Errorf("read desc failed: %v", err)
    			}
    			if string(name) == string(noteName) && typ == noteType {
    				return desc, nil
    			}
    		}
    	}
    	return nil, nil
    }
    
    func findshlib(ctxt *Link, shlib string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults_test.go

    	// verify we default to NotRequired restart policy for resize when resources are specified
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.InPlacePodVerticalScaling, true)
    
    	for desc, tc := range map[string]struct {
    		testContainer        v1.Container
    		expectedResizePolicy []v1.ContainerResizePolicy
    	}{
    		"CPU and memory limits are specified": {
    			testContainer: v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    }
    
    func TestRootSidecarScopePropagation(t *testing.T) {
    	rootNS := "istio-system"
    	defaultNS := "default"
    	otherNS := "foo"
    
    	verifyServices := func(sidecarScopeEnabled bool, desc string, ns string, push *PushContext) {
    		t.Run(desc, func(t *testing.T) {
    			scScope := push.getSidecarScope(&Proxy{Type: SidecarProxy, ConfigNamespace: ns}, nil)
    			services := scScope.Services()
    			numSvc := 0
    			svcList := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    			}
    
    			// look for matching scope description
    			desc := kind + ":" + strings.Join(scope.Names(), " ")
    			found := false
    			for _, d := range test.scopes {
    				if desc == d {
    					found = true
    					break
    				}
    			}
    			if !found {
    				t.Errorf("package %s: no matching scope found for %s", name, desc)
    			}
    		}
    	}
    }
    
    func TestInitOrderInfo(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    				kind = "range"
    			}
    
    			// look for matching scope description
    			desc := kind + ":" + strings.Join(scope.Names(), " ")
    			found := false
    			for _, d := range test.scopes {
    				if desc == d {
    					found = true
    					break
    				}
    			}
    			if !found {
    				t.Errorf("package %s: no matching scope found for %s", name, desc)
    			}
    		}
    	}
    }
    
    func TestInitOrderInfo(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    const (
    	objectLockConfig        = "object-lock.xml"
    	bucketTaggingConfig     = "tagging.xml"
    	bucketReplicationConfig = "replication.xml"
    
    	xMinIOErrCodeHeader = "x-minio-error-code"
    	xMinIOErrDescHeader = "x-minio-error-desc"
    
    	postPolicyBucketTagging = "tagging"
    )
    
    // Check if there are buckets on server without corresponding entry in etcd backend and
    // make entries. Here is the general flow
    // - Range over all the available buckets
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top