Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for toint (0.18 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	l := s.newValue1(ssa.OpSliceLen, types.Types[types.TINT], slice)
    	c := s.newValue1(ssa.OpSliceCap, types.Types[types.TINT], slice)
    
    	// Add number of new elements to length.
    	nargs := s.constInt(types.Types[types.TINT], int64(len(n.Args)-1))
    	l = s.newValue2(s.ssaOp(ir.OADD, types.Types[types.TINT]), types.Types[types.TINT], l, nargs)
    
    	// Decide if we need to grow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    [...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
    [][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
    [][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
    map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_VecReg_6_10, ap_VecReg_16_20}},
    	{VLOGEFP, 0xfc0007ff00000000, 0x100001ca00000000, 0x1f000000000000, // Vector Log Base 2 Estimate Floating-Point VX-form (vlogefp VRT,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_16_20}},
    	{VMADDFP, 0xfc00003f00000000, 0x1000002e00000000, 0x0, // Vector Multiply-Add Floating-Point VA-form (vmaddfp VRT,VRA,VRC,VRB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	Preference NodeSelectorTerm
    }
    
    // Taint represents taint that can be applied to the node.
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    type Taint struct {
    	// Required. The taint key to be applied to a node.
    	Key string
    	// Required. The taint value corresponding to the taint key.
    	// +optional
    	Value string
    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. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    message Taint {
      // Required. The taint key to be applied to a node.
      optional string key = 1;
    
      // The taint value corresponding to the taint key.
      // +optional
      optional string value = 2;
    
      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_Taint = map[string]string{
    	"":          "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
    	"key":       "Required. The taint key to be applied to a node.",
    	"value":     "The taint value corresponding to the taint key.",
    	"effect":    "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    type Taint struct {
    	// Required. The taint key to be applied to a node.
    	Key string `json:"key" protobuf:"bytes,1,opt,name=key"`
    	// The taint value corresponding to the taint key.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    message Taint {
      // Required. The taint key to be applied to a node.
      optional string key = 1;
    
      // The taint value corresponding to the taint key.
      // +optional
      optional string value = 2;
    
      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    changed to not return an error when the specified target can be detected as not a mount point. On Linux, the behavior of detecting a mount point depends on `umount` command is validated when the mounter is created. Additionally, mount point checks will be skipped in CleanupMountPoint/CleanupMountWithForce if the mounter's Unmount having the changed behavior of not returning error when target is not a mount point. ([#109676](https://github.com/kubernetes/kubernetes/pull/109676), [@cartermckinnon](h...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.9.md

    stability of EBS support across the board. If a Volume is “stuck” in the attaching state to a node for too long a unschedulable taint will be applied to the node, so a Kubernetes admin can [take manual steps to correct the error](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html). Users are encouraged to ensure they are monitoring for the taint, and should consider automatically terminating instances in this state.
    
    In addition, support for NVMe disks has been...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top