Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for mq_open (0.15 sec)

  1. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_UNLINKAT               = 508 // { int unlinkat(int fd, char *path, int flags); }
    	SYS_FACCESSAT              = 509 // { int faccessat(int fd, char *path, int amode, \
    	SYS_MQ_OPEN                = 510 // { mqd_t mq_open(const char * name, int oflag, \
    	SYS_MQ_CLOSE               = 511 // { int mq_close(mqd_t mqdes); }
    	SYS_MQ_UNLINK              = 512 // { int mq_unlink(const char *name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_UNLINKAT               = 508 // { int unlinkat(int fd, char *path, int flags); }
    	SYS_FACCESSAT              = 509 // { int faccessat(int fd, char *path, int amode, int flags); }
    	SYS_MQ_OPEN                = 510 // { mqd_t mq_open(const char * name, int oflag, mode_t mode, struct mq_attr *attr); }
    	SYS_MQ_CLOSE               = 511 // { int mq_close(mqd_t mqdes); }
    	SYS_MQ_UNLINK              = 512 // { int mq_unlink(const char *name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					this.data.core.refreshing = true;
    					this.data.core.to_open = $.map($.makeArray(this.data.core.to_open), function (n) { throw "Not supported" });
    					this.data.core.to_load = $.map($.makeArray(this.data.core.to_load), function (n) { throw "Not supported" });
    					if(this.data.core.to_open.length) {
    						this.data.core.to_load = this.data.core.to_load.concat(this.data.core.to_open);
    					}
    				}
    				if(this.data.core.to_load.length) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.cc

    }
    
    const std::string TempFile::getName() const { return name_; }
    
    bool TempFile::truncate() {
      std::fstream::close();
      std::fstream::open(name_, std::ios::binary | std::ios::out);
      return std::fstream::is_open();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 26 14:56:58 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. prepare_stmt.go

    	defer close(cacheStmt.prepared)
    
    	// Reason why cannot lock conn.PrepareContext
    	// suppose the maxopen is 1, g1 is creating record and g2 is querying record.
    	// 1. g1 begin tx, g1 is requeue because of waiting for the system call, now `db.ConnPool` db.numOpen == 1.
    	// 2. g2 select lock `conn.PrepareContext(ctx, query)`, now db.numOpen == db.maxOpen , wait for release.
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	db.mu.Lock()
    	if n > 0 {
    		db.maxIdleCount = n
    	} else {
    		// No idle connections.
    		db.maxIdleCount = -1
    	}
    	// Make sure maxIdle doesn't exceed maxOpen
    	if db.maxOpen > 0 && db.maxIdleConnsLocked() > db.maxOpen {
    		db.maxIdleCount = db.maxOpen
    	}
    	var closing []*driverConn
    	idleCount := len(db.freeConn)
    	maxIdle := db.maxIdleConnsLocked()
    	if idleCount > maxIdle {
    		closing = db.freeConn[maxIdle:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

        *serialized_model = std::string{std::istreambuf_iterator<char>(std::cin),
                                        std::istreambuf_iterator<char>()};
      } else {
        std::ifstream t(file_path);
        if (!t.is_open()) {
          std::cerr << "Failed to open input file.\n";
          return true;
        }
        *serialized_model = std::string{std::istreambuf_iterator<char>(t),
                                        std::istreambuf_iterator<char>()};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	IN_ACCESS                = 0x00000001
    	IN_MODIFY                = 0x00000002
    	IN_ATTRIB                = 0x00000004
    	IN_CLOSE_WRITE           = 0x00000008
    	IN_CLOSE_NOWRITE         = 0x00000010
    	IN_OPEN                  = 0x00000020
    	IN_MOVED_FROM            = 0x00000040
    	IN_MOVED_TO              = 0x00000080
    	IN_CREATE                = 0x00000100
    	IN_DELETE                = 0x00000200
    	IN_DELETE_SELF           = 0x00000400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }
    	SYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }
    	SYS_KMQ_OPEN                 = 457 // { int kmq_open(const char *path, int flags, mode_t mode, const struct mq_attr *attr); }
    	SYS_KMQ_SETATTR              = 458 // { int kmq_setattr(int mqd, const struct mq_attr *attr, struct mq_attr *oattr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }
    	SYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }
    	SYS_KMQ_OPEN                 = 457 // { int kmq_open(const char *path, int flags, mode_t mode, const struct mq_attr *attr); }
    	SYS_KMQ_SETATTR              = 458 // { int kmq_setattr(int mqd, const struct mq_attr *attr, struct mq_attr *oattr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top