Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for attrBuf (0.26 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    func Setattrlist(path string, attrlist *Attrlist, attrBuf []byte, options int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 unsafe.Pointer
    	if len(attrBuf) > 0 {
    		_p1 = unsafe.Pointer(&attrBuf[0])
    	} else {
    		_p1 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    func Setattrlist(path string, attrlist *Attrlist, attrBuf []byte, options int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 unsafe.Pointer
    	if len(attrBuf) > 0 {
    		_p1 = unsafe.Pointer(&attrBuf[0])
    	} else {
    		_p1 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    //sys	Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
    //sys	Setattrlist(path string, attrlist *Attrlist, attrBuf []byte, options int) (err error)
    //sys	Setegid(egid int) (err error)
    //sysnb	Seteuid(euid int) (err error)
    //sysnb	Setgid(gid int) (err error)
    //sys	Setlogin(name string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

      let cppStorageType = "::llvm::SmallVector<int32_t>";
      let parser = "::mlir::TFL::parseI32Array($_parser)";
      let printer = "$_printer << '[' << $_self << ']'";
    }
    
    def DimensionMetadataAttr : AttrDef<TFL_Dialect, "DimensionMetadata"> {
      let mnemonic = "dimension_metadata";
      let parameters = (ins
          TFL_DimensionTypeAttr:$format,
          "int32_t":$dense_size,
          I32ArrayParameter:$segments,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

      }
    
      void GetAttr(const char* attr_name, AttrValue* out_attr) {
        TF_Buffer* attr_buf = TF_NewBuffer();
        TF_FunctionGetAttrValueProto(func_, attr_name, attr_buf, s_);
        ASSERT_TRUE(out_attr->ParseFromArray(attr_buf->data, attr_buf->length));
        TF_DeleteBuffer(attr_buf);
      }
    
      const char* func_name_ = "MyFunc";
      const char* func_node_name_ = "MyFunc_0";
      TF_Status* s_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. src/html/template/content.go

    	// as it will be included verbatim in the template output.
    	URL string
    
    	// Srcset encapsulates a known safe srcset attribute
    	// (see https://w3c.github.io/html/semantics-embedded-content.html#element-attrdef-img-srcset).
    	//
    	// Use of this type presents a security risk:
    	// the encapsulated content should come from a trusted source,
    	// as it will be included verbatim in the template output.
    	Srcset string
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/BUILD

            ),
            (
                ["-gen-enum-defs"],
                "ir/tfl_ops_enums.cc.inc",
            ),
            (
                ["-gen-attrdef-decls"],
                "ir/tfl_ops_attrdefs.h.inc",
            ),
            (
                ["-gen-attrdef-defs"],
                "ir/tfl_ops_attrdefs.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "ir/tfl_op_enums.td",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. RELEASE.md

    *   Fixes a `CHECK`-fail when decoding resource handles from proto
        ([CVE-2022-23564](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23564))
    *   Fixes a `CHECK`-fail with repeated `AttrDef`
        ([CVE-2022-23565](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23565))
    *   Fixes a heap OOB write in Grappler
        ([CVE-2022-23566](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23566))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top