Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Opcode (0.14 sec)

  1. src/crypto/x509/verify_test.go

    		t.Fatalf("error was not an UnhandledCriticalExtension: %v", err)
    	}
    }
    
    func certificateFromPEM(pemBytes string) (*Certificate, error) {
    	block, _ := pem.Decode([]byte(pemBytes))
    	if block == nil {
    		return nil, errors.New("failed to decode PEM")
    	}
    	return ParseCertificate(block.Bytes)
    }
    
    func testVerify(t *testing.T, test verifyTest, useSystemRoots bool) {
    	opts := VerifyOptions{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    //	At least in the current tree, these invocations all print the
    //	documentation for json.Decoder's Decode method:
    //
    //	go doc json.Decoder.Decode
    //	go doc json.decoder.decode
    //	go doc json.decode
    //	cd go/src/encoding/json; go doc decode
    //
    // Flags:
    //
    //	-all
    //		Show all the documentation for the package.
    //	-c
    //		Respect case when matching symbols.
    //	-cmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		}
    
    		contentType := expfmt.Negotiate(r.Header)
    		w.Header().Set("Content-Type", string(contentType))
    
    		enc := expfmt.NewEncoder(w, contentType)
    		for _, mf := range mfs {
    			if err := enc.Encode(mf); err != nil {
    				// client may disconnect for any reasons
    				// we do not have to log this.
    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) {
    	*out = *in
    	if in.IPMode != nil {
    		in, out := &in.IPMode, &out.IPMode
    		*out = new(LoadBalancerIPMode)
    		**out = **in
    	}
    	if in.Ports != nil {
    		in, out := &in.Ports, &out.Ports
    		*out = make([]PortStatus, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) {
    	*out = *in
    	if in.IPMode != nil {
    		in, out := &in.IPMode, &out.IPMode
    		*out = new(LoadBalancerIPMode)
    		**out = **in
    	}
    	if in.Ports != nil {
    		in, out := &in.Ports, &out.Ports
    		*out = make([]PortStatus, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    func mustSchema(source string) *schema.Structural {
    	source = FixTabsOrDie(source)
    	d := yaml.NewYAMLOrJSONDecoder(strings.NewReader(source), 4096)
    	props := &apiextensions.JSONSchemaProps{}
    	if err := d.Decode(props); err != nil {
    		panic(err)
    	}
    	convertedProps := &apiextensionsinternal.JSONSchemaProps{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // medium move uses a duff device
    (Move [s] dst src mem)
    	&& s > 64 && s <= 16*64 && s%16 == 0
    	&& !config.noDuffDevice && logLargeCopy(v, s) =>
    	(DUFFCOPY [8 * (64 - s/16)] dst src mem)
    // 8 is the number of bytes to encode:
    //
    // LDP.P   16(R16), (R26, R27)
    // STP.P   (R26, R27), 16(R17)
    //
    // 64 is number of these blocks. See runtime/duff_arm64.s:duffcopy
    
    // large move uses a loop
    (Move [s] dst src mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. src/reflect/value.go

    			// As the doc comment says, the returned pointer is an
    			// underlying code pointer but not necessarily enough to
    			// identify a single function uniquely. All method expressions
    			// created via reflect have the same underlying code pointer,
    			// so their Pointers are equal. The function used here must
    			// match the one used in makeMethodValue.
    			code := methodValueCallCodePtr()
    			return *(*unsafe.Pointer)(unsafe.Pointer(&code))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    			wantStatus := fmt.Sprintf("%d %s", code, StatusText(code))
    			if !strings.Contains(got, wantStatus) {
    				t.Errorf("Code %d: Wanted %q Modified for %q: %s", code, wantStatus, req, got)
    			} else if strings.Contains(got, "Content-Length") {
    				t.Errorf("Code %d: Got a Content-Length from %q: %s", code, req, got)
    			} else if strings.Contains(got, "stuff") {
    				t.Errorf("Code %d: Response contains a body from %q: %s", code, req, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top