Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 91 for 4000 (3.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	996:  {region: 0x10a, script: 0x5b, flags: 0x0},
    	997:  {region: 0x108, script: 0x5b, flags: 0x0},
    	998:  {region: 0x130, script: 0x5b, flags: 0x0},
    	999:  {region: 0x166, script: 0x5b, flags: 0x0},
    	1000: {region: 0xa3, script: 0x4c, flags: 0x0},
    	1001: {region: 0x9a, script: 0x22, flags: 0x0},
    	1002: {region: 0x81, script: 0x5b, flags: 0x0},
    	1003: {region: 0x107, script: 0x20, flags: 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    -------------------------------\n * Private TransitionEnd Helpers\n * ------------------------------------------------------------------------\n */\n\nconst TRANSITION_END = 'transitionend'\nconst MAX_UID = 1000000\nconst MILLISECONDS_MULTIPLIER = 1000\n\n// Shoutout AngusCroll (https://goo.gl/pxwQGp)\nfunction toType(obj) {\n  return {}.toString.call(obj).match(/\\s([a-z]+)/i)[1].toLowerCase()\n}\n\nfunction getSpecialTransitionEndEvent() {\n  return {\n    bindType: TRANSITION_END,\n    delegateType:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (1)
  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)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testReshape(%arg0: tensor<10x10x10xf32>, %shape1: tensor<2xi32>) -> tensor<100x100xf32> {
      // expected-error @+1 {{requires 'output' number of elements to match 'tensor' number of elements, but got 10000 and 1000}}
      %r1 = "tf.Reshape" (%arg0, %shape1) : (tensor<10x10x10xf32>, tensor<2xi32>) -> tensor<100x100xf32>
      func.return %r1 : tensor<100x100xf32>
    }
    
    // -----
    // tf.Reshape with incorrect shape operand rank.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. src/main/webapp/js/bootstrap.min.js.map

    -------------------------------\n * Private TransitionEnd Helpers\n * ------------------------------------------------------------------------\n */\n\nconst TRANSITION_END = 'transitionend'\nconst MAX_UID = 1000000\nconst MILLISECONDS_MULTIPLIER = 1000\n\n// Shoutout AngusCroll (https://goo.gl/pxwQGp)\nfunction toType(obj) {\n  return {}.toString.call(obj).match(/\\s([a-z]+)/i)[1].toLowerCase()\n}\n\nfunction getSpecialTransitionEndEvent() {\n  return {\n    bindType: TRANSITION_END,\n    delegateType:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    gouv.ht
    perso.ht
    
    // hu : http://www.domain.hu/domain/English/sld.html
    // Confirmed by registry <******@****.***> 2008-06-12
    hu
    co.hu
    info.hu
    org.hu
    priv.hu
    sport.hu
    tm.hu
    2000.hu
    agrar.hu
    bolt.hu
    casino.hu
    city.hu
    erotica.hu
    erotika.hu
    film.hu
    forum.hu
    games.hu
    hotel.hu
    ingatlan.hu
    jogasz.hu
    konyvelo.hu
    lakas.hu
    media.hu
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top