Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for tings (0.07 sec)

  1. prow/config/calico.yaml

                              type: integer
                            type:
                              description: Match on a specific ICMP type.  For example
                                a value of 8 refers to ICMP Echo Request (i.e. pings).
                              type: integer
                          type: object
                        ipVersion:
                          description: IPVersion is an optional field that restricts the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    			return http2ConnectionError(http2ErrCodeProtocol)
    		}
    		// We probably did ask for this, but canceled. Just ignore it.
    		// TODO: be stricter here? only silently ignore things which
    		// we canceled, but not things which were closed normally
    		// by the peer? Tough without accumulating too much state.
    
    		// But at least return their flow control:
    		if f.Length > 0 {
    			cc.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    ### Migration
    
    Check out the [Pydantic migration guide](https://docs.pydantic.dev/2.0/migration/).
    
    For the things that need changes in your Pydantic models, the Pydantic team built [`bump-pydantic`](https://github.com/pydantic/bump-pydantic).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    type VolumeSource struct {
    	// HostPath represents file or directory on the host machine that is
    	// directly exposed to the container. This is generally used for system
    	// agents or other privileged things that are allowed to see the host
    	// machine. Most containers will NOT need this.
    	// ---
    	// TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not
    	// mount host directories as read/write.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.17.md

    ### Network
    - The official kube-proxy image (used by kubeadm, among other things) is now compatible with systems running iptables 1.8 in "nft" mode, and will autodetect which mode it should use. ([#82966](https://github.com/kubernetes/kubernetes/pull/82966), [@danwinship](https://github.com/danwinship))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) instrument2(t *types.Type, addr, addr2 *ssa.Value, kind instrumentKind) {
    	if !s.instrumentMemory {
    		return
    	}
    
    	w := t.Size()
    	if w == 0 {
    		return // can't race on zero-sized things
    	}
    
    	if ssa.IsSanitizerSafeAddr(addr) {
    		return
    	}
    
    	var fn *obj.LSym
    	needWidth := false
    
    	if addr2 != nil && kind != instrumentMove {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

    - Enable SPDY pings to keep connections alive, so that `kubectl exec` and `kubectl portforward` won't be interrupted. ([#97083](https://github.com/kubernetes/kubernetes/pull/97083), [@knight42](https://github.com/knight42)) [SIG API Machinery and CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    type VolumeSource struct {
    	// hostPath represents a pre-existing file or directory on the host
    	// machine that is directly exposed to the container. This is generally
    	// used for system agents or other privileged things that are allowed
    	// to see the host machine. Most containers will NOT need this.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
    	// ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    			}
    		})
    	}
    }
    
    // This tests tracePacket against static data, just to make sure we match things in the
    // way we expect to.
    func TestTracePacket(t *testing.T) {
    	rules := dedent.Dedent(`
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		:KUBE-EXTERNAL-SERVICES - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // negative.
        int64_t axis = (*axis_attr.begin()).getSExtValue();
        if (axis < 0) {
          axis += rank;
        }
    
        // If we're supposed to sum things up in the reverse direction, we reverse
        // the input and then later reverse the output.
        if (op.getReverse()) {
          llvm::SmallVector<int64_t, 4> dims_to_reverse({axis});
          input = rewriter.create<ReverseOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top