Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for SO (0.08 sec)

  1. src/net/http/h2_bundle.go

    //
    // Ideally we should delay for at least 1 RTT + epsilon so the client has
    // a chance to read the GOAWAY and stop sending messages. Measuring RTT
    // is hard, so we approximate with 1 second. See golang.org/issue/18701.
    //
    // This is a var so it can be shorter in tests, where all requests uses the
    // loopback interface making the expected RTT very small.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    				// If so, we handle it specially to avoid write barriers on the fast
    				// (non-growth) path.
    				if !ir.SameSafeExpr(n.X, rhs.Args[0]) || base.Flag.N != 0 {
    					break
    				}
    				// If the slice can be SSA'd, it'll be on the stack,
    				// so there will be no write barriers,
    				// so there's no need to attempt to prevent them.
    				if s.canSSA(n.X) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    func (tracer *iptablesTracer) ruleMatches(rule *iptablestest.Rule, sourceIP, protocol, destIP, destPort string) bool {
    	// The sub-rules within an iptables rule are ANDed together, so the rule only
    	// matches if all of them match. So go through the subrules, and if any of them
    	// DON'T match, then fail.
    
    	if rule.SourceAddress != nil && !addressMatches(tracer.t, rule.SourceAddress, sourceIP) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // proto, so convert to a text form here.
          ::xla::OpSharding sharding_proto;
          if (tensorflow::DecodeShardingAttribute(
                  op.get_XlaSharding().value().str(), sharding_proto)
                  .failed()) {
            return failure();
          }
          // Token is a control signal and not a real data, so arbitrarily assign
          // the token to device 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // Stride:       1,   4,   -1
      // Begin mask:   0,   0,    1  (= 1)
      // End mask:     1,   0,    0  (= 4)
    
      // So result shape:
      // Dim #0: begin mask (1) -> begin = 0; end 8 canonicalized to 4: so 4
      // Dim #1: 4 to 65 stride 4: so 16
      // Dim #2: begin -3 + 1024 = 1021; end mask (1) -> end = -1: so 1022
      // result shape: [4, 16, 1022]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    * Fixed the webhook admission plugin so that it works even if the apiserver and the nodes are in two networks (e.g., in GKE). ([#50476](https://github.com/kubernetes/kubernetes/pull/50476), [@caesarxuchao](https://github.com/caesarxuchao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		}
    
    		// Ephemeral containers should not be relied upon for fundamental pod services, so fields such as
    		// Lifecycle, probes, resources and ports should be disallowed. This is implemented as a list
    		// of allowed fields so that new fields will be given consideration prior to inclusion in ephemeral containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: fixed a bug during kubeadm upgrade, where it is not possible to mount a new device and create a symbolic link for /etc/kubernetes (or a sub-directory) so that kubeadm stores its information on the mounted device. ([#123406](https://github.com/kubern...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                  # so that it outlives the init container.
                  mountPropagation: Bidirectional
                - mountPath: /var/run/calico
                  name: var-run-calico
                  # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host
                  # so that it outlives the init container.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. doc/go_spec.html

    </p>
    
    <h2 id="Source_code_representation">Source code representation</h2>
    
    <p>
    Source code is Unicode text encoded in
    <a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not
    canonicalized, so a single accented code point is distinct from the
    same character constructed from combining an accent and a letter;
    those are treated as two code points.  For simplicity, this document
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top