Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsPcdata (0.29 sec)

  1. src/cmd/internal/obj/link.go

    	AttrContentAddressable
    
    	// ABI wrapper is set for compiler-generated text symbols that
    	// convert between ABI0 and ABIInternal calling conventions.
    	AttrABIWrapper
    
    	// IsPcdata indicates this is a pcdata symbol.
    	AttrPcdata
    
    	// PkgInit indicates this is a compiler-generated package init func.
    	AttrPkgInit
    
    	// Linkname indicates this is a go:linkname'd symbol.
    	AttrLinkname
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    // Some of these conditions are duplicated in cmd/link/internal/ld.(*Link).symtab.
    // TODO: instead of duplicating them, have the compiler decide where symbols go.
    func contentHashSection(s *LSym) byte {
    	name := s.Name
    	if s.IsPcdata() {
    		return 'P'
    	}
    	if strings.HasPrefix(name, "gcargs.") ||
    		strings.HasPrefix(name, "gclocals.") ||
    		strings.HasPrefix(name, "gclocals·") ||
    		strings.HasSuffix(name, ".opendefer") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    			t.Fatalf("Expected: %v, Got: %v, Body: %s, err: %v", exp, rec.Code, string(b), err)
    		}
    	}
    
    	if !asMultipart {
    		srcData := NewDummyDataGen(partSizes[0], 0)
    		req, err := newTestSignedRequestV4(http.MethodPut, getPutObjectURL("", bucketName, objectName),
    			partSizes[0], srcData, creds.AccessKey, creds.SecretKey, metadata)
    		if err != nil {
    			t.Fatalf("Unexpected err: %#v", err)
    		}
    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