Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for gwrite (0.33 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    }  // namespace
    
    TEST(XlaCompilationTest, ResourcesClusteringAllowed) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* read = MakeRead(root, "R");
      Node* write = MakeWrite(root, "W");
    
      root.graph()->AddControlEdge(read, write);
    
      FixupSourceAndSinkEdges(root.graph());
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      TF_EXPECT_OK(root.ToGraph(graph.get()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    		// cmd.Stdout and cmd.Stderr in order to keep the underlying
    		// interleaving of writes, but then it would see even partial writes
    		// interleaved, which would corrupt the JSON. So, we only process
    		// cmd.Stdout. This has another consequence though: if stdout==stderr,
    		// we have to serialize Writes in case the Writer is not concurrent
    		// safe. If we were just passing stdout/stderr through to exec, it would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    func (c *Config) initLegacySessionTicketKeyRLocked() {
    	// Don't write if SessionTicketKey is already defined as our deprecated string,
    	// or if it is defined by the user but sessionTicketKeys is already set.
    	if c.SessionTicketKey != [32]byte{} &&
    		(bytes.HasPrefix(c.SessionTicketKey[:], deprecatedSessionTicketKey) || len(c.sessionTicketKeys) > 0) {
    		return
    	}
    
    	// We need to write some data, so get an exclusive lock and re-check any conditions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

       the loop.
    
    ### `-tf-hoist-replicate-invariant-resource-writes`
    
    _Hoists writes to replicate invariant resource variables._
    
    This pass hoists replicate invariant resource variable writes outside
    tf_device.replicate op. These may have been inserted by other passes such as
    resource op lifting. However, if the resource variable is not replicated, writes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	if *debugGcc {
    		fmt.Fprintf(os.Stderr, "$ %s <<EOF\n", strings.Join(args, " "))
    		os.Stderr.Write(stdin)
    		fmt.Fprint(os.Stderr, "EOF\n")
    	}
    	stdout, stderr, ok := run(stdin, args)
    	if *debugGcc {
    		os.Stderr.Write(stdout)
    		os.Stderr.Write(stderr)
    	}
    	if !ok {
    		os.Stderr.Write(stderr)
    		os.Exit(2)
    	}
    	return string(stdout), string(stderr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    	}
    	return
    }
    
    var libc_pread_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_pread pread "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func pwrite(fd int, p []byte, offset int64) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(p) > 0 {
    		_p0 = unsafe.Pointer(&p[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_pathconf pathconf "libc.so"
    //go:cgo_import_dynamic libc_pause pause "libc.so"
    //go:cgo_import_dynamic libc_pread pread "libc.so"
    //go:cgo_import_dynamic libc_pwrite pwrite "libc.so"
    //go:cgo_import_dynamic libc_read read "libc.so"
    //go:cgo_import_dynamic libc_readlink readlink "libc.so"
    //go:cgo_import_dynamic libc_rename rename "libc.so"
    //go:cgo_import_dynamic libc_renameat renameat "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/CopyUtil.java

         *
         * @param writer
         *            ライター
         * @return ラップされたライター
         */
        protected static Writer wrap(final Writer writer) {
            if (writer instanceof BufferedWriter) {
                return writer;
            }
            if (writer instanceof StringWriter) {
                return writer;
            }
            return new BufferedWriter(writer, DEFAULT_BUF_SIZE);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

              "fullMetaSearch": false,
              "hide": false,
              "includeNullMetadata": true,
              "instant": false,
              "legendFormat": "Pool {{pool}} / Set {{set}} - Write Quorum",
              "range": true,
              "refId": "C",
              "useBackend": false
            },
            {
              "datasource": {
                "type": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    === Whitebox unit test execution on the classpath
    
    The simplest setup to write unit tests for functions or classes in modules is to _not_ use module specifics during test execution.
    For this, you just need to write tests the same way you would write them for normal libraries.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top