Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,213 for flagstr (0.28 sec)

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

    //sysnb	getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)
    //sys	recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)
    //sys	sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)
    //sys	recvmsg(s int, msg *Msghdr, flags int) (n int, err error)
    //sys	sendmsg(s int, msg *Msghdr, flags int) (n int, err error)
    
    //sys	futimesat(dirfd int, path string, times *[2]Timeval) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/sym.go

    func (sym *Sym) Siggen() bool       { return sym.flags&symSiggen != 0 }
    func (sym *Sym) Asm() bool          { return sym.flags&symAsm != 0 }
    func (sym *Sym) Func() bool         { return sym.flags&symFunc != 0 }
    
    func (sym *Sym) SetOnExportList(b bool) { sym.flags.set(symOnExportList, b) }
    func (sym *Sym) SetUniq(b bool)         { sym.flags.set(symUniq, b) }
    func (sym *Sym) SetSiggen(b bool)       { sym.flags.set(symSiggen, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "CMOVWLSconst", argLength: 2, reg: gp1flags1, asm: "MOVW", aux: "Int32", resultInArg0: true}, // replace arg0 w/ const if flags indicates LS, arg1=flags
    		{name: "SRAcond", argLength: 3, reg: gp2flags1, asm: "SRA"},                                         // arg0 >> 31 if flags indicates HS, arg0 >> arg1 otherwise, signed shift, arg2=flags
    
    		// function calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/make_test_graphs.py

      write_graph(tfadd, FLAGS.out_dir)
      write_graph(tfadd_with_ckpt, FLAGS.out_dir)
      write_graph(tfadd_with_ckpt_saver, FLAGS.out_dir)
      write_graph(tfassert_eq, FLAGS.out_dir)
      write_graph(tfcond, FLAGS.out_dir)
      write_graph(tffunction, FLAGS.out_dir)
      write_graph(tfgather, FLAGS.out_dir)
      write_graph(tfmatmul, FLAGS.out_dir)
      write_graph(tfmatmulandadd, FLAGS.out_dir)
      write_graph(tfsplits, FLAGS.out_dir)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go

    //sys	recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)
    //sys	sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)
    //sys	recvmsg(s int, msg *Msghdr, flags int) (n int, err error)
    //sys	sendmsg(s int, msg *Msghdr, flags int) (n int, err error)
    //sys	mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/examples/pad/ops_defs.py

    from tensorflow.python.ops import gen_array_ops
    from tensorflow.python.platform import flags
    
    Composite = composite.Composite
    FLAGS = flags.FLAGS
    
    flags.DEFINE_string(
        'output', None,
        'Path to write the genereated register op file and MLIR file.')
    
    flags.DEFINE_bool('gen_register_op', True,
                      'Generate register op cc file or tfr mlir file.')
    
    
    @Composite(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 01 05:00:29 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_OPENAT                 = 504 // { int openat(int fd, char *path, int flags, int mode); }
    	SYS_FSTATAT                = 505 // { int fstatat(int fd, char *path, 	struct stat *sb, int flags); }
    	SYS_FCHMODAT               = 506 // { int fchmodat(int fd, char *path, int mode, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	}
    	return fanotifyMark(fd, flags, mask, dirFd, p)
    }
    
    //sys	fchmodat(dirfd int, path string, mode uint32) (err error)
    //sys	fchmodat2(dirfd int, path string, mode uint32, flags int) (err error)
    
    func Fchmodat(dirfd int, path string, mode uint32, flags int) error {
    	// Linux fchmodat doesn't support the flags parameter, but fchmodat2 does.
    	// Try fchmodat2 if flags are specified.
    	if flags != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/NtlmMessage.java

        private int flags;
    
    
        /**
         * Returns the flags currently in use for this message.
         *
         * @return An <code>int</code> containing the flags in use for this
         *         message.
         */
        public int getFlags () {
            return this.flags;
        }
    
    
        /**
         * Sets the flags for this message.
         *
         * @param flags
         *            The flags for this message.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java

    
        // flags is NOT the same as flags member
    
        /**
         * 
         * @param config
         * @param fileName
         * @param access
         * @param shareAccess
         * @param flags
         * @param fileAttributes
         * @param andx
         */
        public SmbComOpenAndX ( Configuration config, String fileName, int access, int shareAccess, int flags, int fileAttributes,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
Back to top