Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for 3$ (1.46 sec)

  1. cmd/admin-handlers.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    					Mode: networking.ServerTLSSettings_ISTIO_MUTUAL,
    				},
    			},
    			routeName: "some-route",
    			proxyConfig: &meshconfig.ProxyConfig{
    				GatewayTopology: &meshconfig.Topology{
    					NumTrustedProxies:        3,
    					ForwardClientCertDetails: meshconfig.ForwardClientCertDetails_FORWARD_ONLY,
    				},
    			},
    			result: &filterChainOpts{
    				sniHosts: []string{"example.org"},
    				tlsContext: &auth.DownstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    		{numFailedPods: 1, numNormalPods: 0, expectedCreates: 0, expectedDeletes: 1, expectedEvents: 1, test: "1 failed pod (kill 1), 0 normal pod (create 0; will create in the next sync)"},
    		{numFailedPods: 1, numNormalPods: 3, expectedCreates: 0, expectedDeletes: 3, expectedEvents: 1, test: "1 failed pod (kill 1), 3 normal pods (kill 2)"},
    	}
    
    	for _, test := range tests {
    		t.Run(test.test, func(t *testing.T) {
    			for _, strategy := range updateStrategies() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

        (Load <t.FieldType(1)> (OffPtr <t.FieldType(1).PtrTo()> [t.FieldOff(1)] ptr) mem)
        (Load <t.FieldType(2)> (OffPtr <t.FieldType(2).PtrTo()> [t.FieldOff(2)] ptr) mem)
        (Load <t.FieldType(3)> (OffPtr <t.FieldType(3).PtrTo()> [t.FieldOff(3)] ptr) mem))
    
    (StructSelect [i] x:(Load <t> ptr mem)) && !CanSSA(t) =>
      @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)
    
    (Store _ (StructMake0) mem) => mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager_test.go

    	if podKiller.pod != nil {
    		t.Errorf("Manager should not have killed a pod yet, but killed: %v", podKiller.pod.Name)
    	}
    
    	// step forward in time pass the grace period
    	fakeClock.Step(3 * time.Minute)
    	summaryProvider.result = summaryStatsMaker("1500Mi", podStats)
    	_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    	if err != nil {
    		t.Fatalf("Manager expects no error but got %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    }
    
    // Pass ports=nil for all ports.
    func formatEndpoints(endpoints *api.Endpoints, ports sets.String) string {
    	if len(endpoints.Subsets) == 0 {
    		return "<none>"
    	}
    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for i := range endpoints.Subsets {
    		ss := &endpoints.Subsets[i]
    		if len(ss.Ports) == 0 {
    			// It's possible to have headless services with no ports.
    			count += len(ss.Addresses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. cmd/server_test.go

    	response, err = s.client.Do(enableVersioningBucketRequest)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	for _, objectName := range []string{"pfx/a/1.txt", "pfx/b/2.txt", "pfx/", "pfx2/c/3.txt", "pfx2/d/3.txt", "pfx1/1.txt", "pfx2/", "pfx3/", "pfx4/"} {
    		buffer := bytes.NewReader([]byte(""))
    		request, err = newTestSignedRequest(http.MethodPut, getPutObjectURL(s.endPoint, bucketName, objectName),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    	a = 1 &lt;&lt; iota  // a == 1  (iota == 0)
    	b = 1 &lt;&lt; iota  // b == 2  (iota == 1)
    	c = 3          // c == 3  (iota == 2, unused)
    	d = 1 &lt;&lt; iota  // d == 8  (iota == 3)
    )
    
    const (
    	u         = iota * 42  // u == 0     (untyped integer constant)
    	v float64 = iota * 42  // v == 42.0  (float64 constant)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	{i: 26, as: AMOVD, a1: C_LACON, a6: C_REG},
    	{i: 26, as: AMOVW, a1: C_LACON, a6: C_REG},
    	{i: 26, as: AMOVWZ, a1: C_LACON, a6: C_REG},
    	{i: 3, as: AMOVD, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVW, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVWZ, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVB, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVBZ, a1: C_DCON, a6: C_REG},
    
    	// store constant
    	{i: 72, as: AMOVD, a1: C_SCON, a6: C_LAUTO},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	const days = "SunMonTueWedThuFriSat"
    	const months = "JanFebMarAprMayJunJulAugSepOctNovDec"
    
    	t = t.UTC()
    	yy, mm, dd := t.Date()
    	hh, mn, ss := t.Clock()
    	day := days[3*t.Weekday():]
    	mon := months[3*(mm-1):]
    
    	return append(b,
    		day[0], day[1], day[2], ',', ' ',
    		byte('0'+dd/10), byte('0'+dd%10), ' ',
    		mon[0], mon[1], mon[2], ' ',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top