Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 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. CHANGELOG/CHANGELOG-1.10.md

    This release brings additional power to both local storage and Persistent Volumes. [Mount namespace propagation](https://github.com/kubernetes/enhancements/issues/432) allows a container to mount a volume as rslave so that host mounts can be seen inside the container, or as rshared so that mounts made inside a container can be seen by the host. (Note that this is [not supported on Windows](https://github.com/kubernetes/kubernetes/pull/60275).) [Local Ephemeral Storage Capacity Isolation](https:/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.9.md

    creation of dedicated nodes with extended resources. If operators want to create dedicated nodes with extended resources (such as GPUs, FPGAs, and so on), they are expected to taint the node with extended resource name as the key. This admission controller, if enabled, automatically adds tolerations for such taints to pods requesting extended resources, so users don't have to manually add these tolerations. ([#55839](https://github.com/kubernetes/kubernetes/pull/55839),[ @mindprince](https://github.com/mindprince))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.11.md

    * Increase Azure default maximumLoadBalancerRuleCount to 250. ([#72621](https://github.com/kubernetes/kubernetes/pull/72621), [@feiskyer](https://github.com/feiskyer))
    * Fixes a NPD bug on GCI, so that it disables glog writing to files for log-counter ([#76211](https://github.com/kubernetes/kubernetes/pull/76211), [@wangzhen127](https://github.com/wangzhen127))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top