Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for Characteristics (0.21 sec)

  1. src/debug/buildinfo/buildinfo.go

    		IMAGE_SCN_LNK_NRELOC_OVFL        = 0x1000000
    		IMAGE_SCN_ALIGN_32BYTES          = 0x600000
    	)
    	for _, sect := range x.f.Sections {
    		if sect.VirtualAddress != 0 && sect.Size != 0 &&
    			sect.Characteristics&^IMAGE_SCN_ALIGN_32BYTES == IMAGE_SCN_CNT_INITIALIZED_DATA|IMAGE_SCN_MEM_READ|IMAGE_SCN_MEM_WRITE {
    			return uint64(sect.VirtualAddress) + x.imageBase(), uint64(sect.VirtualSize)
    		}
    	}
    	return 0, 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys.go

    	}
    }
    
    // fakeFile provides an fs.FileInfo implementation for an overlaid file,
    // so that the file has the name of the overlaid file, but takes all
    // other characteristics of the replacement file.
    type fakeFile struct {
    	name string
    	real fs.FileInfo
    }
    
    func (f fakeFile) Name() string       { return f.name }
    func (f fakeFile) Size() int64        { return f.real.Size() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    func gcallers(gp *g, skip int, pcbuf []uintptr) int {
    	var u unwinder
    	u.init(gp, unwindSilentErrors)
    	return tracebackPCs(&u, skip, pcbuf)
    }
    
    // showframe reports whether the frame with the given characteristics should
    // be printed during a traceback.
    func showframe(sf srcFunc, gp *g, firstFrame bool, calleeID abi.FuncID) bool {
    	mp := getg().m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

        result.removeAll(collection);
        return result;
      }
    
      /**
       * Returns a set backed by the specified map. The resulting set displays the same ordering,
       * concurrency, and performance characteristics as the backing map. In essence, this factory
       * method provides a {@link Set} implementation corresponding to any {@link Map} implementation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    		f, err := pe.Open(obj)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer f.Close()
    		if f.Section(".reloc") == nil {
    			t.Error(".reloc section is not present")
    		}
    		if (f.FileHeader.Characteristics & pe.IMAGE_FILE_RELOCS_STRIPPED) != 0 {
    			t.Error("IMAGE_FILE_RELOCS_STRIPPED flag is set")
    		}
    		var dc uint16
    		switch oh := f.OptionalHeader.(type) {
    		case *pe.OptionalHeader32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

         */
        public enum Type {
    
            /**
             * The key characteristic is that the trace to the usage indicates the offending user code.
             *
             * Example: calling a deprecated method.
             */
            USER_CODE_DIRECT,
    
            /**
             * The key characteristic is that the trace to the usage DOES NOT indicate the offending user code,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// NodeInternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeInternalIP. The IP it resolves to may or may not
    	// be a listed NodeInternalIP address.
    	NodeInternalDNS NodeAddressType = "InternalDNS"
    
    	// NodeExternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// NodeInternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeInternalIP. The IP it resolves to may or may not
    	// be a listed NodeInternalIP address.
    	NodeInternalDNS NodeAddressType = "InternalDNS"
    
    	// NodeExternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. src/crypto/cipher/gcm.go

    	i = ((i << 1) & 0xa) | ((i >> 1) & 0x5)
    	return i
    }
    
    // gcmAdd adds two elements of GF(2¹²⁸) and returns the sum.
    func gcmAdd(x, y *gcmFieldElement) gcmFieldElement {
    	// Addition in a characteristic 2 field is just XOR.
    	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
    }
    
    // gcmDouble returns the result of doubling an element of GF(2¹²⁸).
    func gcmDouble(x *gcmFieldElement) (double gcmFieldElement) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top