Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for thingo (0.28 sec)

  1. 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)
  2. src/cmd/internal/obj/x86/avx_optabs.go

    // Code generated by x86avxgen. DO NOT EDIT.
    
    package x86
    
    // VEX instructions that come in two forms:
    //	VTHING xmm2/m128, xmmV, xmm1
    //	VTHING ymm2/m256, ymmV, ymm1
    //
    // The opcode array in the corresponding Optab entry
    // should contain the (VEX prefixes, opcode byte) pair
    // for each of the two forms.
    // For example, the entries for VPXOR are:
    //
    //	VPXOR xmm2/m128, xmmV, xmm1
    //	VEX.NDS.128.66.0F.WIG EF /r
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    message VolumeSource {
      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"hostPath":              "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
    - 254.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top