Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for Largest (0.32 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    * Update etcd 2.2 references to use 3.0.x ([#29399](https://github.com/kubernetes/kubernetes/pull/29399), [@timothysc](https://github.com/timothysc))
    * HPA: ignore scale targets whose replica count is 0 ([#29212](https://github.com/kubernetes/kubernetes/pull/29212), [@sjenning](https://github.com/sjenning))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    		for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    			/* very large branches */
    			if (o.flag&BRANCH14BITS != 0 || o.flag&BRANCH19BITS != 0) && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    				var toofar bool
    				if o.flag&BRANCH14BITS != 0 { // branch instruction encodes 14 bits
    					toofar = otxt <= -(1<<15)+10 || otxt >= (1<<15)-10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    func testTransportCONNECTBidi(t *testing.T, mode testMode) {
    	const target = "backend:443"
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		if r.Method != "CONNECT" {
    			t.Errorf("unexpected method %q", r.Method)
    			w.WriteHeader(500)
    			return
    		}
    		if r.RequestURI != target {
    			t.Errorf("unexpected CONNECT target %q", r.RequestURI)
    			w.WriteHeader(500)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. fastapi/applications.py

                        provided, it would contain a `dict` with:
                        * `description`: A short description of the target documentation.
                            [CommonMark syntax](https://commonmark.org/) MAY be used for
                            rich text representation.
                        * `url`: The URL for the target documentation. Value MUST be in
                            the form of a URL.
    
                    Read more in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

            "properties": {
              "resourceVersion": {
                "description": "Specifies the target ResourceVersion",
                "type": "string"
              },
              "uid": {
                "description": "Specifies the target UID.",
                "type": "string"
              }
            },
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			test.SetForTest(t, &features.EnableAutoSni, tc.enableAutoSni)
    			test.SetForTest(t, &features.VerifyCertAtClient, tc.enableVerifyCertAtClient)
    
    			targets := []model.ServiceTarget{
    				{
    					Service: tc.service,
    					Port: model.ServiceInstancePort{
    						ServicePort: tc.port,
    						TargetPort:  10001,
    					},
    				},
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. src/html/entity.go

    		"swarr;":                           '\U00002199',
    		"swarrow;":                         '\U00002199',
    		"swnwar;":                          '\U0000292A',
    		"szlig;":                           '\U000000DF',
    		"target;":                          '\U00002316',
    		"tau;":                             '\U000003C4',
    		"tbrk;":                            '\U000023B4',
    		"tcaron;":                          '\U00000165',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

            "properties": {
              "resourceVersion": {
                "description": "Specifies the target ResourceVersion",
                "type": "string"
              },
              "uid": {
                "description": "Specifies the target UID.",
                "type": "string"
              }
            },
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

    * Updated Go to 1.7 ([#28742](https://github.com/kubernetes/kubernetes/pull/28742), [@jessfraz](https://github.com/jessfraz))
    * HPA: fixed wrong count for target replicas calculations ([#34821](https://github.com/kubernetes/kubernetes/pull/34821)). ([#34955](https://github.com/kubernetes/kubernetes/pull/34955), [@jszczepkowski](https://github.com/jszczepkowski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    //	-fuzztime t
    //	    Run enough iterations of the fuzz target during fuzzing to take t,
    //	    specified as a time.Duration (for example, -fuzztime 1h30s).
    //		The default is to run forever.
    //	    The special syntax Nx means to run the fuzz target N times
    //	    (for example, -fuzztime 1000x).
    //
    //	-fuzzminimizetime t
    //	    Run enough iterations of the fuzz target during each minimization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top