Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for bounded (0.19 sec)

  1. docs/en/docs/img/deployment/https/https04.drawio

                        <mxGeometry x="710" y="-50" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  2. src/strconv/atof_test.go

    	{"0x0.1234567p-125", "1.671814e-39", nil},  // rounded down
    	{"0x0.1234568p-125", "1.671814e-39", nil},  // rounded down
    	{"0x0.1234569p-125", "1.671815e-39", nil},  // rounded up
    	{"0x0.1234570p-125", "1.671815e-39", nil},  // 0x00123457
    	{"0x0.0000010p-125", "1e-45", nil},         // 0x00000001
    	{"0x0.00000081p-125", "1e-45", nil},        // rounded up
    	{"0x0.0000008p-125", "0", nil},             // rounded down
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  3. docs/en/docs/img/deployment/concepts/process-ram.drawio

                        <mxGeometry x="755" y="290" width="300" height="80" as="geometry"/>
                    </mxCell>
                    <mxCell id="6" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 10K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/https/https08.drawio

                        <mxGeometry x="710" y="-50" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  5. docs/en/docs/img/deployment/https/https03.drawio

                        <mxGeometry x="710" y="-50" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https05.drawio

                        <mxGeometry x="710" y="-50" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  7. docs/en/docs/img/deployment/https/https.drawio

                        <mxGeometry x="710" y="-50" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 25.7K bytes
    - Viewed (0)
  8. docs/en/docs/img/deployment/https/https07.drawio

                        <mxGeometry x="710" y="-50" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			maxVols:      4,
    			test:         "already-mounted AzureDisk volumes are always ok to allow",
    		},
    		{
    			newPod:       splitAzureDiskPod,
    			existingPods: []*v1.Pod{oneAzureDiskPod, oneAzureDiskPod, onePVCPod(azureDiskVolumeFilterType)},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    			test:         "the same AzureDisk volumes are not counted multiple times",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  10. src/math/big/float.go

    			// considered "1.0", for p == 0, the mantissa value m is >= 0.5.
    			// If m > 0.5, it is rounded up to 1.0; i.e., the smallest denormal.
    			// If m == 0.5, it is rounded down to even, i.e., 0.0.
    			// If p < 0, the mantissa value m is <= "0.25" which is never rounded up.
    			if p < 0 /* m <= 0.25 */ || p == 0 && x.mant.sticky(uint(len(x.mant))*_W-1) == 0 /* m == 0.5 */ {
    				// underflow to ±0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top