Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 2GB (0.02 sec)

  1. src/internal/poll/fd_unix.go

    	return syscall.SetNonblock(fd.Sysfd, false)
    }
    
    // Darwin and FreeBSD can't read or write 2GB+ files at a time,
    // even on 64-bit systems.
    // The same is true of socket implementations on many systems.
    // See golang.org/issue/7812 and golang.org/issue/16266.
    // Use 1GB instead of, say, 2GB-1, to keep subsequent reads aligned.
    const maxRW = 1 << 30
    
    // Read implements io.Reader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // computation, which may require relevant metadata such as quantization
      // parameters.
      intermediates:[int];
    
      // When an op is using custom_options in a model that is larger than 2GB, then
      // we instead use the following attributes to find the buffer location which
      // is stored outside of flatbuffers, the offset is calculated relative to the
      // beginning of the file and is only valid if > 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                // TODO: This breaks the provider
                task.setOutputDir(extension.getUserManual().getStagingRoot().dir("render-single-pdf").get().getAsFile());
                // The PDF rendering needs at least 2GB of heap
                task.jvm(options -> options.setMaxHeapSize("3g"));
            });
    
            TaskProvider<AsciidoctorTask> userguideMultiPage = tasks.register("userguideMultiPage", AsciidoctorTask.class, task -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top