Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 174 for Write (0.48 sec)

  1. 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)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    ### `-tf-device-mark-input-output-aliases`
    
    _Marks device cluster inputs-output pairs that read/write to the same variable as aliases_
    
    This pass analyzes the inputs and outputs to device cluster and marks those
    input-output pairs as aliases (using `tf.aliasing_output` attribute) which read
    and write to the same resource. This aliasing information can then be propagated
    to XLA compiler for input/output buffer space optimizations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/CopyUtil.java

            try {
                final FileChannel channel = os.getChannel();
                final ByteBuffer buffer = ByteBuffer.wrap(in);
                return ChannelUtil.write(channel, buffer);
            } finally {
                CloseableUtil.close(os);
            }
        }
    
        /**
         * 指定されたエンコーディングのバイト配列からプラットフォームデフォルトエンコーディングのファイルへコピーします。
         *
         * @param in
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/net/http/fs_test.go

    	}
    	res.Body.Close()
    }
    
    type gzipResponseWriter struct {
    	ResponseWriter
    	w *gzip.Writer
    }
    
    func (grw gzipResponseWriter) Write(b []byte) (int, error) {
    	return grw.w.Write(b)
    }
    
    func (grw gzipResponseWriter) Flush() {
    	grw.w.Flush()
    	if fw, ok := grw.ResponseWriter.(http.Flusher); ok {
    		fw.Flush()
    	}
    }
    
    // Issue 63769
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_messages.go

    	if msgWithOrig, ok := msg.(handshakeMessageWithOriginalBytes); ok {
    		if orig := msgWithOrig.originalBytes(); orig != nil {
    			h.Write(msgWithOrig.originalBytes())
    			return nil
    		}
    	}
    
    	data, err := msg.marshal()
    	if err != nil {
    		return err
    	}
    	h.Write(data)
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

      set -x
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # This script builds and runs a local kubernetes cluster. You may need to run
    # this as root to allow kubelet to open docker's socket, and to write the test
    # CA in /var/run/kubernetes.
    # Usage: `hack/local-up-cluster.sh`.
    
    DOCKER_OPTS=${DOCKER_OPTS:-""}
    export DOCKER=(docker "${DOCKER_OPTS[@]}")
    DOCKER_ROOT=${DOCKER_ROOT:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. cmd/peer-rest-server.go

    	// Listen Publisher uses nonblocking publish and hence does not wait for slow subscribers.
    	// Use buffered channel to take care of burst sends or slow w.Write()
    	ch := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity())
    	err := globalHTTPListen.Subscribe(mask, ch, ctx.Done(), func(ev event.Event) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    		state.changedSlots.add(ID(slot))
    		state.currentState.slots[slot] = loc
    	}
    
    	// Handle any register clobbering. Call operations, for example,
    	// clobber all registers even though they don't explicitly write to
    	// them.
    	clobbers := uint64(opcodeTable[v.Op].reg.clobbers)
    	for {
    		if clobbers == 0 {
    			break
    		}
    		reg := uint8(bits.TrailingZeros64(clobbers))
    		clobbers &^= 1 << reg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top