Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for powtab (0.11 sec)

  1. src/strconv/atof.go

    	exp = 0
    	for d.dp > 0 {
    		var n int
    		if d.dp >= len(powtab) {
    			n = 27
    		} else {
    			n = powtab[d.dp]
    		}
    		d.Shift(-n)
    		exp += n
    	}
    	for d.dp < 0 || d.dp == 0 && d.d[0] < '5' {
    		var n int
    		if -d.dp >= len(powtab) {
    			n = 27
    		} else {
    			n = powtab[-d.dp]
    		}
    		d.Shift(n)
    		exp -= n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[publishing_portal]]
    = Publishing Plugins to the Gradle Plugin Portal
    :portal: Gradle Plugin Portal
    :plugin: Greeting Plugin
    :publishplugin: Plugin Publishing Plugin
    :plugin-reference-documentation: https://plugins.gradle.org/docs/publish-plugin[reference documentation of the {publishplugin}]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/math/pow_s390x.s

    // Adjusted from asm to remove offset and convert
    DATA ·powtabi<> + 0(SB)/8, $0x1010101
    DATA ·powtabi<> + 8(SB)/8, $0x101020202020203
    DATA ·powtabi<> + 16(SB)/8, $0x303030404040405
    DATA ·powtabi<> + 24(SB)/8, $0x505050606060708
    DATA ·powtabi<> + 32(SB)/8, $0x90a0b0c0d0e0f10
    DATA ·powtabi<> + 40(SB)/8, $0x1011111212121313
    DATA ·powtabi<> + 48(SB)/8, $0x1314141414151515
    DATA ·powtabi<> + 56(SB)/8, $0x1516161617171717
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. pkg/volume/iscsi/iscsi_util.go

    func makePDNameInternal(host volume.VolumeHost, portal string, iqn string, lun string, iface string) string {
    	return filepath.Join(host.GetPluginDir(iscsiPluginName), "iface-"+iface, portal+"-"+iqn+"-lun-"+lun)
    }
    
    // make a directory like /var/lib/kubelet/plugins/kubernetes.io/iscsi/volumeDevices/iface_name/portal-some_iqn-lun-lun_id
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi_util_test.go

    	portal, iqn, err := extractPortalAndIqn(devicePath)
    	if err != nil || portal != "127.0.0.1:3260" || iqn != "iqn.2014-12.com.example:test.tgt00" {
    		t.Errorf("extractPortalAndIqn: got %v %s %s", err, portal, iqn)
    	}
    	devicePath = "127.0.0.1:3260-eui.02004567A425678D-lun-0"
    	portal, iqn, err = extractPortalAndIqn(devicePath)
    	if err != nil || portal != "127.0.0.1:3260" || iqn != "eui.02004567A425678D" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  6. pkg/volume/iscsi/iscsi_test.go

    		t.Errorf("Expected true for mounter.IsReadOnly")
    	}
    }
    
    func TestPortalMounter(t *testing.T) {
    	if portal := portalMounter("127.0.0.1"); portal != "127.0.0.1:3260" {
    		t.Errorf("wrong portal: %s", portal)
    	}
    	if portal := portalMounter("127.0.0.1:3260"); portal != "127.0.0.1:3260" {
    		t.Errorf("wrong portal: %s", portal)
    	}
    }
    
    type testcase struct {
    	name      string
    	defaultNs string
    	spec      *volume.Spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/symtab.go

    	slice(itablinkSym, nitablinks)
    
    	// The ptab slice
    	if ptab := ldr.Lookup("go:plugin.tabs", 0); ptab != 0 && ldr.AttrReachable(ptab) {
    		ldr.SetAttrLocal(ptab, true)
    		if ldr.SymType(ptab) != sym.SRODATA {
    			panic(fmt.Sprintf("go:plugin.tabs is %v, not SRODATA", ldr.SymType(ptab)))
    		}
    		nentries := uint64(len(ldr.Data(ptab)) / 8) // sizeof(nameOff) + sizeof(typeOff)
    		slice(ptab, nentries)
    	} else {
    		nilSlice()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi.go

    // volumeName: pv0001
    func (iscsi *iscsiDisk) GetPodDeviceMapPath() (string, string) {
    	return iscsi.iscsiPodDeviceMapPath()
    }
    
    func portalMounter(portal string) string {
    	if !strings.Contains(portal, ":") {
    		portal = portal + ":3260"
    	}
    	return portal
    }
    
    // get iSCSI volume info: readOnly and fstype
    func getISCSIVolumeInfo(spec *volume.Spec) (bool, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. tests/test_openapi_separate_input_output_schemas.py

        @app.post("/items-list/")
        def create_item_list(item: List[Item]):
            return item
    
        @app.get("/items/")
        def read_items() -> List[Item]:
            return [
                Item(
                    name="Portal Gun",
                    description="Device to travel through the multi-rick-verse",
                    sub=SubItem(subname="subname"),
                ),
                Item(name="Plumbus"),
            ]
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9_gtables.go

    }
    
    // brw RA,RS
    func type_brw(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    	o0 |= uint32(p.To.Reg&0x1f) << 16   // RA
    	o0 |= uint32(p.From.Reg&0x1f) << 21 // RS
    	out[0] = o0
    }
    
    // hashchkp RB,offset(RA)
    func type_hashchkp(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
Back to top