Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for boop (0.17 sec)

  1. src/net/http/h2_bundle.go

    	// Everything following is owned by the serve loop; use serveG.check():
    	serveG                      http2goroutineLock // used to verify funcs are on serve()
    	pushEnabled                 bool
    	sawClientPreface            bool // preface has already been read, used in h2c upgrade
    	sawFirstSettings            bool // got the initial SETTINGS frame after the preface
    	needToSendSettingsAck       bool
    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/ssa/rewritePPC64.go

    	}
    	// match: (SETBC [0] (InvertFlags bool))
    	// result: (SETBC [1] bool)
    	for {
    		if auxIntToInt32(v.AuxInt) != 0 || v_0.Op != OpPPC64InvertFlags {
    			break
    		}
    		bool := v_0.Args[0]
    		v.reset(OpPPC64SETBC)
    		v.AuxInt = int32ToAuxInt(1)
    		v.AddArg(bool)
    		return true
    	}
    	// match: (SETBC [1] (InvertFlags bool))
    	// result: (SETBC [0] bool)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite386.go

    }
    func rewriteValue386_Op386NEGL(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (NEGL (MOVLconst [c]))
    	// result: (MOVLconst [-c])
    	for {
    		if v_0.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(-c)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386NOTL(v *Value) bool {
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	}
    }
    func rewriteValueS390X_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVDaddr {sym} base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpS390XMOVDaddr)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    func rewriteValueS390X_OpAtomicAdd32(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM.go

    	}
    }
    func rewriteValueARM_OpEqB(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (EqB x y)
    	// result: (XORconst [1] (XOR <typ.Bool> x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARMXORconst)
    		v.AuxInt = int32ToAuxInt(1)
    		v0 := b.NewValue0(v.Pos, OpARMXOR, typ.Bool)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// +optional
    	Stdin bool
    
    	// Stdout if true indicates that stdout is to be redirected for the attach call
    	// +optional
    	Stdout bool
    
    	// Stderr if true indicates that stderr is to be redirected for the attach call
    	// +optional
    	Stderr bool
    
    	// TTY if true indicates that a tty will be allocated for the attach call
    	// +optional
    	TTY bool
    
    	// Container to attach to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // Defaults to false.
      // +optional
      optional bool stdin = 1;
    
      // Stdout if true indicates that stdout is to be redirected for the attach call.
      // Defaults to true.
      // +optional
      optional bool stdout = 2;
    
      // Stderr if true indicates that stderr is to be redirected for the attach call.
      // Defaults to true.
      // +optional
      optional bool stderr = 3;
    
    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. src/cmd/compile/internal/ssagen/ssa.go

    	cgoUnsafeArgs       bool
    	hasdefer            bool // whether the function contains a defer statement
    	softFloat           bool
    	hasOpenDefers       bool // whether we are doing open-coded defers
    	checkPtrEnabled     bool // whether to insert checkptr instrumentation
    	instrumentEnterExit bool // whether to instrument function enter/exit
    	instrumentMemory    bool // whether to instrument memory operations
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // Defaults to false.
      // +optional
      optional bool stdin = 1;
    
      // Stdout if true indicates that stdout is to be redirected for the attach call.
      // Defaults to true.
      // +optional
      optional bool stdout = 2;
    
      // Stderr if true indicates that stderr is to be redirected for the attach call.
      // Defaults to true.
      // +optional
      optional bool stderr = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	EnableRecoverFromExpansionFailure bool
    	// Allow to validate the label value of the label selector
    	AllowInvalidLabelValueInSelector bool
    	// Allow to validate the API group of the data source and data source reference
    	AllowInvalidAPIGroupInDataSourceOrRef bool
    	// Allow users to modify the class of volume attributes
    	EnableVolumeAttributesClass bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top