Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for fd_read (0.38 sec)

  1. src/net/fd_fake.go

    // license that can be found in the LICENSE file.
    
    //go:build js || wasip1
    
    package net
    
    import (
    	"internal/poll"
    	"runtime"
    	"time"
    )
    
    const (
    	readSyscallName  = "fd_read"
    	writeSyscallName = "fd_write"
    )
    
    // Network file descriptor.
    type netFD struct {
    	pfd poll.FD
    
    	// immutable until Close
    	family      int
    	sotype      int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/syscall/fs_wasip1.go

    //
    //go:wasmimport wasi_snapshot_preview1 fd_pread
    //go:noescape
    func fd_pread(fd int32, iovs unsafe.Pointer, iovsLen size, offset filesize, nread unsafe.Pointer) Errno
    
    //go:wasmimport wasi_snapshot_preview1 fd_pwrite
    //go:noescape
    func fd_pwrite(fd int32, iovs unsafe.Pointer, iovsLen size, offset filesize, nwritten unsafe.Pointer) Errno
    
    //go:wasmimport wasi_snapshot_preview1 fd_read
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/sysRegEnc.go

    	{"APIBKeyHi_EL1", REG_APIBKeyHi_EL1, 0x182160, SR_READ | SR_WRITE},
    	{"APIBKeyLo_EL1", REG_APIBKeyLo_EL1, 0x182140, SR_READ | SR_WRITE},
    	{"CCSIDR2_EL1", REG_CCSIDR2_EL1, 0x190040, SR_READ},
    	{"CCSIDR_EL1", REG_CCSIDR_EL1, 0x190000, SR_READ},
    	{"CLIDR_EL1", REG_CLIDR_EL1, 0x190020, SR_READ},
    	{"CNTFRQ_EL0", REG_CNTFRQ_EL0, 0x1be000, SR_READ | SR_WRITE},
    	{"CNTKCTL_EL1", REG_CNTKCTL_EL1, 0x18e100, SR_READ | SR_WRITE},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 08 16:20:53 UTC 2019
    - 35.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

      return GetResourceSubtype(resource.getType());
    }
    
    // Updates uses of `old_read` to `new_partitioned_input` and `new_reads`.
    // `old_partitioned_input` is the predecessor of `old_read`. `new_reads`
    // contains the predecessors of `new_partitioned_input`.
    LogicalResult UpdateReadUses(TF::ReadVariableOp old_read,
                                 TF::TPUPartitionedInputV2Op old_partitioned_input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            public void writeAllOutput(long classId, TestOutputEvent.Destination destination, java.io.Writer writer) {
                doRead(classId, 0, true, destination, writer);
            }
    
            public void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, java.io.Writer writer) {
                doRead(classId, 0, false, destination, writer);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

                        exceptions.add(e);
                    }
                }
                try {
                    return doRead(request);
                } catch (IOException e) {
                    exceptions.forEach(e::addSuppressed);
                    throw e;
                }
            } else {
                return doRead(request);
            }
        }
    
        private Path doLocateExistingPom(Path project) {
            if (project == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/syscall/const_plan9.go

    	QTFILE   = 0x00
    )
    
    // Dir.Mode bits
    const (
    	DMDIR    = 0x80000000
    	DMAPPEND = 0x40000000
    	DMEXCL   = 0x20000000
    	DMMOUNT  = 0x10000000
    	DMAUTH   = 0x08000000
    	DMTMP    = 0x04000000
    	DMREAD   = 0x4
    	DMWRITE  = 0x2
    	DMEXEC   = 0x1
    )
    
    const (
    	STATMAX    = 65535
    	ERRMAX     = 128
    	STATFIXLEN = 49
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    	QTFILE   = 0x00
    )
    
    // Dir.Mode bits
    const (
    	DMDIR    = 0x80000000
    	DMAPPEND = 0x40000000
    	DMEXCL   = 0x20000000
    	DMMOUNT  = 0x10000000
    	DMAUTH   = 0x08000000
    	DMTMP    = 0x04000000
    	DMREAD   = 0x4
    	DMWRITE  = 0x2
    	DMEXEC   = 0x1
    )
    
    const (
    	STATMAX    = 65535
    	ERRMAX     = 128
    	STATFIXLEN = 49
    )
    
    // Mount and bind flags
    const (
    	MREPL   = 0x0000
    	MBEFORE = 0x0001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

                doWrite(work)
            }
        }
    
        suspend fun ReadContext.readWork(): ScheduledWork =
            withGradleIsolate(owner, internalTypesCodec) {
                doRead()
            }
    
        private
        suspend fun WriteContext.doWrite(work: ScheduledWork) {
            val nodes = work.scheduledNodes
            val nodeCount = nodes.size
            writeSmallInt(nodeCount)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/fingerprinting_utils.h

    #define TENSORFLOW_CC_SAVED_MODEL_FINGERPRINTING_UTILS_H_
    
    #include <cstdint>
    #include <string>
    #include <vector>
    
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "riegeli/bytes/fd_reader.h"  // from @riegeli
    #include "riegeli/records/record_reader.h"  // from @riegeli
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/platform/protobuf.h"  // IWYU pragma: keep
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top