Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,083 for toint (0.24 sec)

  1. pkg/controller/util/node/controller_utils.go

    				err))
    		return false
    	}
    	logger.V(4).Info("Added taint to node", "taint", taintsToAdd, "node", klog.KRef("", node.Name))
    
    	err = controller.RemoveTaintOffNode(ctx, kubeClient, node.Name, node, taintsToRemove...)
    	if err != nil {
    		utilruntime.HandleError(
    			fmt.Errorf(
    				"unable to remove %+v unneeded taint from unresponsive Node %q: %v",
    				taintsToRemove,
    				node.Name,
    				err))
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/types.go

    	PluginConfig []PluginConfig
    }
    
    // Plugins include multiple extension points. When specified, the list of plugins for
    // a particular extension point are the only ones enabled. If an extension point is
    // omitted from the config, then the default set of plugins is used for that extension point.
    // Enabled plugins are called in the order specified here, after default plugins. If they need to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/plist.go

    	pcdata.To.Type = TYPE_CONST
    	pcdata.To.Offset = -1
    
    	return pcdata
    }
    
    // StartUnsafePoint generates PCDATA Progs after p to mark the
    // beginning of an unsafe point. The unsafe point starts immediately
    // after p.
    // It returns the last Prog generated.
    func (ctxt *Link) StartUnsafePoint(p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := Appendp(p, newprog)
    	pcdata.As = APCDATA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	var scorer volumeCapacityScorer
    	if fts.EnableVolumeCapacityPriority {
    		shape := make(helper.FunctionShape, 0, len(args.Shape))
    		for _, point := range args.Shape {
    			shape = append(shape, helper.FunctionShapePoint{
    				Utilization: int64(point.Utilization),
    				Score:       int64(point.Score) * (framework.MaxNodeScore / config.MaxCustomPriorityScore),
    			})
    		}
    		scorer = buildScorerFunction(shape)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/unicode/letter.go

    	Lo     uint32
    	Hi     uint32
    	Stride uint32
    }
    
    // CaseRange represents a range of Unicode code points for simple (one
    // code point to one code point) case conversion.
    // The range runs from Lo to Hi inclusive, with a fixed stride of 1. Deltas
    // are the number to add to the code point to reach the code point for a
    // different case for that character. They may be negative. If zero, it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. src/strconv/ftoa.go

    	bias     int
    }
    
    var float32info = floatInfo{23, 8, -127}
    var float64info = floatInfo{52, 11, -1023}
    
    // FormatFloat converts the floating-point number f to a string,
    // according to the format fmt and precision prec. It rounds the
    // result assuming that the original was obtained from a floating-point
    // value of bitSize bits (32 for float32, 64 for float64).
    //
    // The format fmt is one of
    // 'b' (-ddddp±ddd, a binary exponent),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pkg/volume/util/hostutil/hostutil_linux.go

    	} else if errno == unix.EBUSY {
    		// device is in use
    		return true, nil
    	}
    	// error during call to Open
    	return false, errno
    }
    
    // GetDeviceNameFromMount given a mount point, find the device name from its global mount point
    func (hu *HostUtil) GetDeviceNameFromMount(mounter mount.Interface, mountPath, pluginMountDir string) (string, error) {
    	return getDeviceNameFromMount(mounter, mountPath, pluginMountDir)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. src/fmt/doc.go

    	%#v	a Go-syntax representation of the value
    		(floating-point infinities and NaNs print as ±Inf and NaN)
    	%T	a Go-syntax representation of the type of the value
    	%%	a literal percent sign; consumes no value
    
    Boolean:
    
    	%t	the word true or false
    
    Integer:
    
    	%b	base 2
    	%c	the character represented by the corresponding Unicode code point
    	%d	base 10
    	%o	base 8
    	%O	base 8 with 0o prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                      (by validating that both VolumeSnapshot and VolumeSnapshotContent
                      point at each other) before using this object.'
                      type: string
                    creationTime:
                      description: creationTime is the timestamp when the point-in-time
                        snapshot is taken by the underlying storage system. In dynamic snapshot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  10. src/image/gif/writer_test.go

    			}
    		}
    	}
    }
    
    func TestEncodeNonZeroMinPoint(t *testing.T) {
    	points := []image.Point{
    		{-8, -9},
    		{-4, -4},
    		{-3, +3},
    		{+0, +0},
    		{+2, +2},
    	}
    	for _, p := range points {
    		src := image.NewPaletted(image.Rectangle{
    			Min: p,
    			Max: p.Add(image.Point{6, 6}),
    		}, palette.Plan9)
    		var buf bytes.Buffer
    		if err := Encode(&buf, src, nil); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top