Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for 4000 (0.07 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	`
    
    var (
    	NodeAllEvent = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.All}
    
    	lowPriority, midPriority, highPriority = int32(0), int32(100), int32(1000)
    	mediumPriority                         = (lowPriority + highPriority) / 2
    
    	highPriorityPodInfo = mustNewPodInfo(
    		st.MakePod().Name("hpp").Namespace("ns1").UID("hppns1").Priority(highPriority).Obj(),
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	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], ' ',
    		byte('0'+yy/1000), byte('0'+(yy/100)%10), byte('0'+(yy/10)%10), byte('0'+yy%10), ' ',
    		byte('0'+hh/10), byte('0'+hh%10), ':',
    		byte('0'+mn/10), byte('0'+mn%10), ':',
    		byte('0'+ss/10), byte('0'+ss%10), ' ',
    		'G', 'M', 'T')
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	testenv.SkipIfOptimizationOff(t)
    	if race.Enabled {
    		t.Skip("skipping allocation test when using race detector")
    	}
    	c := new(Conn)
    	ctx := context.Background()
    	n := int(testing.AllocsPerRun(1000, func() {
    		_, release, err := c.grabConn(ctx)
    		if err != nil {
    			t.Fatal(err)
    		}
    		release(nil)
    	}))
    	if n > 0 {
    		t.Fatalf("Conn.grabConn allocated %v objects; want 0", n)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "endpoints": {
                "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.discovery.v1.Endpoint"
                    }
                  ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    		{name: "invalid http status", in: &networking.HTTPFaultInjection_Abort{
    			Percentage: &networking.Percent{
    				Value: 20,
    			},
    			ErrorType: &networking.HTTPFaultInjection_Abort_HttpStatus{
    				HttpStatus: 9000,
    			},
    		}, valid: false},
    		{name: "invalid low http status", in: &networking.HTTPFaultInjection_Abort{
    			Percentage: &networking.Percent{
    				Value: 20,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    <decimalExponent> | <decimalSI> <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n<decimalSI>       ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    			req.GetBody = getBody
    
    			resp, err := c.Do(req)
    			if err != nil {
    				return fmt.Errorf("Do %d: %v", i, err)
    			} else {
    				resp.Body.Close()
    				if resp.StatusCode != 400 {
    					t.Errorf("Expected status code 400, got %v", resp.Status)
    				}
    			}
    		}
    		return nil
    	})
    }
    
    func TestTransportAutomaticHTTP2(t *testing.T) {
    	testTransportAutoHTTP(t, &Transport{}, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top