- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of about 10,000 for inro (0.36 sec)
-
vendor/github.com/cilium/ebpf/info.go
func newMapInfoFromFd(fd *sys.FD) (*MapInfo, error) { var info sys.MapInfo err := sys.ObjInfo(fd, &info) if errors.Is(err, syscall.EINVAL) { return newMapInfoFromProc(fd) } if err != nil { return nil, err } return &MapInfo{ MapType(info.Type), MapID(info.Id), info.KeySize, info.ValueSize, info.MaxEntries, info.MapFlags, unix.ByteSliceToString(info.Name[:]), }, nil }
Go - Registered: 2023-07-03 16:05 - Last Modified: 2023-04-28 03:46 - 7.9K bytes - Viewed (0) -
src/cmd/go/internal/modinfo/info.go
Reuse bool `json:",omitempty"` // reuse of old module info is safe } type ModuleError struct { Err string // error text } type moduleErrorNoMethods ModuleError // UnmarshalJSON accepts both {"Err":"text"} and "text", // so that the output of go mod download -json can still // be unmarshalled into a ModulePublic during -reuse processing. func (e *ModuleError) UnmarshalJSON(data []byte) error {
Go - Registered: 2023-06-30 00:15 - Last Modified: 2022-07-05 12:57 - 2.9K bytes - Viewed (0) -
vendor/github.com/cilium/ebpf/btf/ext_info.go
type btfExtInfoSec struct { SecNameOff uint32 NumInfo uint32 } // parseExtInfoSec parses a btf_ext_info_sec header within .BTF.ext, // appearing within func_info and line_info sub-sections. // These headers appear once for each program section in the ELF and are // followed by one or more func/line_info records for the section.
Go - Registered: 2023-07-03 16:05 - Last Modified: 2023-04-28 03:46 - 19.7K bytes - Viewed (0) -
tensorflow/tsl/platform/cpu_info.h
==============================================================================*/ #ifndef TENSORFLOW_TSL_PLATFORM_CPU_INFO_H_ #define TENSORFLOW_TSL_PLATFORM_CPU_INFO_H_ #include <string> // TODO(ahentz): This is not strictly required here but, for historical // reasons, many people depend on cpu_info.h in order to use kLittleEndian. #include "tensorflow/tsl/platform/byte_order.h" #if defined(_MSC_VER)
C - Registered: 2023-07-07 11:46 - Last Modified: 2022-09-05 23:31 - 5.6K bytes - Viewed (0) -
vendor/github.com/google/cadvisor/machine/info.go
id, err := ioutil.ReadFile(file) if err == nil { return strings.TrimSpace(string(id)) } } klog.Warningf("Couldn't collect info from any of the files in %q", filePaths) return "" } func Info(sysFs sysfs.SysFs, fsInfo fs.FsInfo, inHostNamespace bool) (*info.MachineInfo, error) { rootFs := "/" if !inHostNamespace { rootFs = "/rootfs" }
Go - Registered: 2023-07-03 16:05 - Last Modified: 2023-01-12 00:07 - 4.9K bytes - Viewed (0) -
vendor/k8s.io/kube-openapi/pkg/validation/spec/info.go
} // Info object provides metadata about the API. // The metadata can be used by the clients if needed, and can be presented in the Swagger-UI for convenience. // // For more information: http://goo.gl/8us55a#infoObject type Info struct { VendorExtensible InfoProps } // MarshalJSON marshal this to JSON func (i Info) MarshalJSON() ([]byte, error) {
Go - Registered: 2023-07-03 16:05 - Last Modified: 2023-03-03 16:43 - 5.5K bytes - Viewed (0) -
fess-crawler/src/test/resources/ajax/info.html
<a href="info.html">INFO</a>...
HTML - Registered: 2023-09-17 03:50 - Last Modified: 2015-10-11 02:16 - 29 bytes - Viewed (0) -
vendor/github.com/vmware/govmomi/object/host_certificate_info.go
func (info *HostCertificateInfo) FromCertificate(cert *x509.Certificate) *HostCertificateInfo { info.Certificate = cert info.subjectName = &cert.Subject info.issuerName = &cert.Issuer info.Issuer = info.fromName(info.issuerName) info.NotBefore = &cert.NotBefore info.NotAfter = &cert.NotAfter info.Subject = info.fromName(info.subjectName) info.ThumbprintSHA1 = soap.ThumbprintSHA1(cert)
Go - Registered: 2023-07-03 16:05 - Last Modified: 2017-02-21 19:04 - 6.3K bytes - Viewed (0) -
tensorflow/tools/build_info/gen_build_info.py
for arg in key_value_list: key, value = arg.split("=") if value.lower() == "true": build_info[key] = True elif value.lower() == "false": build_info[key] = False else: build_info[key] = value.format(**build_info) # Sort the build info to ensure deterministic output. sorted_build_info_pairs = sorted(build_info.items()) contents = """
Python - Registered: 2023-07-07 11:46 - Last Modified: 2022-08-09 22:33 - 3.2K bytes - Viewed (0) -
tensorflow/lite/graph_info.h
See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_LITE_GRAPH_INFO_H_ #define TENSORFLOW_LITE_GRAPH_INFO_H_ #include <stddef.h> #include <cstdint> #include <utility> #include <vector> #include "tensorflow/lite/core/c/common.h" namespace tflite {
C - Registered: 2023-07-07 11:46 - Last Modified: 2022-11-25 12:53 - 6.2K bytes - Viewed (0)