Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for IMMEDIATE (0.39 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/loop_test.go

    		},
    		{
    			name:    "context already canceled condition success and immediate 1 attempt expected",
    			context: cancelledContext,
    			callback: func(_ int) (bool, error) {
    				return true, nil
    			},
    			immediate:        true,
    			attemptsExpected: 1,
    		},
    		{
    			name:    "context already canceled condition fail and immediate 1 attempt expected",
    			context: cancelledContext,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:48:08 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		context            func() (context.Context, context.CancelFunc)
    		immediate          bool
    		waitFunc           func() waitFunc
    		condition          ConditionWithContextFunc
    		cancelContextAfter int
    		attemptsExpected   int
    		errExpected        error
    	}{
    		{
    			name:      "immediate is true, condition returns an error",
    			immediate: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //
    // - arg_immediate_SBFX_SBFM_64M_bitfield_width_64_imms:
    //     an immediate for the <width> bitfield of SBFX 64-bit variant
    //
    // - arg_immediate_shift_32_implicit_inverse_imm16_hw:
    //     a 32-bit immediate of the bitwise inverse of which can be encoded in "imm16:hw"
    //
    // - arg_cond_[Not]AllowALNV_[Invert|Normal]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // times before a context cancellation is detected. If immediate is true, condition will be
    // invoked before waiting and guarantees that condition is invoked at least once, regardless of
    // whether the context has been cancelled.
    func PollUntilContextCancel(ctx context.Context, interval time.Duration, immediate bool, condition ConditionWithContextFunc) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/cpu.go

    	// I-type instructions.
    	ITypeImmMask = 0xfff00000
    
    	// JTypeImmMask is a mask including only the immediate portion of
    	// J-type instructions.
    	JTypeImmMask = 0xfffff000
    
    	// STypeImmMask is a mask including only the immediate portion of
    	// S-type instructions.
    	STypeImmMask = 0xfe000f80
    
    	// UTypeImmMask is a mask including only the immediate portion of
    	// U-type instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    			} else {
    				// Compare register with immediate and jump.
    				prog.AddRestSource(a[1])
    			}
    			break
    		}
    		if p.arch.Family == sys.ARM64 {
    			// Special 3-operand jumps.
    			// a[0] must be immediate constant; a[1] is a register.
    			if a[0].Type != obj.TYPE_CONST {
    				p.errorf("%s: expected immediate constant; found %s", op, obj.Dconv(prog, &a[0]))
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/reloctype.go

    	R_ARM64_PCREL_LDST64
    
    	// R_ARM64_LDST8 sets a LD/ST immediate value to bits [11:0] of a local address.
    	R_ARM64_LDST8
    
    	// R_ARM64_LDST16 sets a LD/ST immediate value to bits [11:1] of a local address.
    	R_ARM64_LDST16
    
    	// R_ARM64_LDST32 sets a LD/ST immediate value to bits [11:2] of a local address.
    	R_ARM64_LDST32
    
    	// R_ARM64_LDST64 sets a LD/ST immediate value to bits [11:3] of a local address.
    	R_ARM64_LDST64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. internal/event/target/amqp.go

    	RoutingKey        string   `json:"routingKey"`
    	ExchangeType      string   `json:"exchangeType"`
    	DeliveryMode      uint8    `json:"deliveryMode"`
    	Mandatory         bool     `json:"mandatory"`
    	Immediate         bool     `json:"immediate"`
    	Durable           bool     `json:"durable"`
    	Internal          bool     `json:"internal"`
    	NoWait            bool     `json:"noWait"`
    	AutoDeleted       bool     `json:"autoDeleted"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/controller/resourceclaim/controller_test.go

    			}(),
    			expectedClaims:  []resourcev1alpha2.ResourceClaim{*structuredParameters(testClaimReserved)},
    			expectedMetrics: expectedMetrics{0, 0},
    		},
    		{
    			name: "clear-reserved-immediate-allocation",
    			pods: []*v1.Pod{},
    			key:  claimKey(testClaimReserved),
    			claims: func() []*resourcev1alpha2.ResourceClaim {
    				claim := testClaimReserved.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    				return hasPVC, err
    			}
    		}
    	}
    	return hasPVC, nil
    }
    
    // PreFilter invoked at the prefilter extension point to check if pod has all
    // immediate PVCs bound. If not all immediate PVCs are bound, an
    // UnschedulableAndUnresolvable is returned.
    func (pl *VolumeBinding) PreFilter(ctx context.Context, state *framework.CycleState, pod *v1.Pod) (*framework.PreFilterResult, *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top