Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for bstart (0.11 sec)

  1. src/runtime/map.go

    	oldoverflow *[]*bmap       // keeps overflow buckets of hmap.oldbuckets alive
    	startBucket uintptr        // bucket iteration started at
    	offset      uint8          // intra-bucket offset to start from during iteration (should be big enough to hold bucketCnt-1)
    	wrapped     bool           // already wrapped around from end of bucket array to beginning
    	B           uint8
    	i           uint8
    	bucket      uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    			c.in.setErrorLocked(err)
    		}
    		return err
    	}
    	hdr := c.rawInput.Bytes()[:recordHeaderLen]
    	typ := recordType(hdr[0])
    
    	// No valid TLS record has a type of 0x80, however SSLv2 handshakes
    	// start with a uint16 length where the MSB is set and the first record
    	// is always < 256 bytes long. Therefore typ == 0x80 strongly suggests
    	// an SSLv2 client.
    	if !handshakeComplete && typ == 0x80 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    			return
    		}
    	}
    	if !enteredMarkAssistForTracing {
    		trace := traceAcquire()
    		if trace.ok() {
    			trace.GCMarkAssistStart()
    			// Set this *after* we trace the start, otherwise we may
    			// emit an in-progress event for an assist we're about to start.
    			gp.inMarkAssist = true
    			traceRelease(trace)
    		} else {
    			gp.inMarkAssist = true
    		}
    		// In the new tracer, set enter mark assist tracing if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    type stateData struct {
    	// preScored is true if PreScore was invoked.
    	preScored bool
    
    	// A copy of all claims for the Pod (i.e. 1:1 match with
    	// pod.Spec.ResourceClaims), initially with the status from the start
    	// of the scheduling cycle. Each claim instance is read-only because it
    	// might come from the informer cache. The instances get replaced when
    	// the plugin itself successfully does an Update.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "self.startsWith('s')",
    							Message: "scoped field should start with 's'",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    			name: "valid for byte",
    			input: schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    	testServer.Server.TLS = config
    	testServer.Server.StartTLS()
    	return testServer
    }
    
    // Starts the test server and returns the TestServer instance.
    func StartTestServer(t TestErrHandler, instanceType string) TestServer {
    	// create an instance of TestServer.
    	testServer := UnstartedTestServer(t, instanceType)
    	testServer.Server.Start()
    	return testServer
    }
    
    // Sets the global config path to empty string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top