Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for iword (0.09 sec)

  1. cmd/kubeadm/app/cmd/completion.go

    	-e "s/${LWORD}_filedir${RWORD}/__kubeadm_filedir/g" \
    	-e "s/${LWORD}_get_comp_words_by_ref${RWORD}/__kubeadm_get_comp_words_by_ref/g" \
    	-e "s/${LWORD}__ltrim_colon_completions${RWORD}/__kubeadm_ltrim_colon_completions/g" \
    	-e "s/${LWORD}compgen${RWORD}/__kubeadm_compgen/g" \
    	-e "s/${LWORD}compopt${RWORD}/__kubeadm_compopt/g" \
    	-e "s/${LWORD}declare${RWORD}/builtin declare/g" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. pkg/collateral/control.go

    	-e "s/${LWORD}_filedir${RWORD}/__istio_filedir/g" \
    	-e "s/${LWORD}_get_comp_words_by_ref${RWORD}/__istio_get_comp_words_by_ref/g" \
    	-e "s/${LWORD}__ltrim_colon_completions${RWORD}/__istio_ltrim_colon_completions/g" \
    	-e "s/${LWORD}compgen${RWORD}/__istio_compgen/g" \
    	-e "s/${LWORD}compopt${RWORD}/__istio_compopt/g" \
    	-e "s/${LWORD}declare${RWORD}/builtin declare/g" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/math/big/int.go

    					q, r := aWord/bWord, aWord%bWord
    					aWord, bWord = bWord, r
    					ua, ub = ub, ua+q*ub
    					va, vb = vb, va+q*vb
    					even = !even
    				}
    
    				t.abs = t.abs.setWord(ua)
    				s.abs = s.abs.setWord(va)
    				t.neg = !even
    				s.neg = even
    
    				t.Mul(Ua, t)
    				s.Mul(Ub, s)
    
    				Ua.Add(t, s)
    			} else {
    				for bWord != 0 {
    					aWord, bWord = bWord, aWord%bWord
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.DWORD, Name: "Dword1", Value: uint64(0)},
    	{Type: registry.DWORD, Name: "Dword2", Value: uint64(1)},
    	{Type: registry.DWORD, Name: "Dword3", Value: uint64(0xff)},
    	{Type: registry.DWORD, Name: "Dword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword1", Value: uint64(0)},
    	{Type: registry.QWORD, Name: "Qword2", Value: uint64(1)},
    	{Type: registry.QWORD, Name: "Qword3", Value: uint64(0xff)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/value.go

    // If value is not DWORD or QWORD, it will return the correct value
    // type and ErrUnexpectedType.
    func (k Key) GetIntegerValue(name string) (val uint64, valtype uint32, err error) {
    	data, typ, err2 := k.getValue(name, make([]byte, 8))
    	if err2 != nil {
    		return 0, typ, err2
    	}
    	switch typ {
    	case DWORD:
    		if len(data) != 4 {
    			return 0, typ, errors.New("DWORD value is not 4 bytes long")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/anames.go

    	"SLBIE",
    	"SLBMFEE",
    	"SLBMFEV",
    	"SLBMTE",
    	"SLD",
    	"SLDCC",
    	"SRD",
    	"SRAD",
    	"SRADCC",
    	"SRDCC",
    	"EXTSWSLI",
    	"EXTSWSLICC",
    	"STDCCC",
    	"TD",
    	"SETB",
    	"DWORD",
    	"REMD",
    	"REMDU",
    	"HRFID",
    	"POPCNTD",
    	"POPCNTW",
    	"POPCNTB",
    	"CNTTZW",
    	"CNTTZWCC",
    	"CNTTZD",
    	"CNTTZDCC",
    	"COPY",
    	"PASTECC",
    	"DARN",
    	"MADDHD",
    	"MADDHDU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/math/big/arith_decl_pure.go

    		fn = subVWlarge
    	}
    	return fn(z, x, y)
    }
    
    func shlVU(z, x []Word, s uint) (c Word) {
    	return shlVU_g(z, x, s)
    }
    
    func shrVU(z, x []Word, s uint) (c Word) {
    	return shrVU_g(z, x, s)
    }
    
    func mulAddVWW(z, x []Word, y, r Word) (c Word) {
    	return mulAddVWW_g(z, x, y, r)
    }
    
    func addMulVVW(z, x []Word, y Word) (c Word) {
    	return addMulVVW_g(z, x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

            int expectedLength = 0;
            for (String word : words) {
                if (word != null) {
                    expectedLength += word.length();
                }
            }
            StringBuilder builder = new StringBuilder(expectedLength);
            for (String word : words) {
                if (word == null || word.length() == 0) {
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/anames.go

    	"VUPLHF",
    	"VUPLL",
    	"VUPLLB",
    	"VUPLLH",
    	"VUPLLF",
    	"VUPL",
    	"VUPLB",
    	"VUPLHW",
    	"VUPLF",
    	"VMSLG",
    	"VMSLEG",
    	"VMSLOG",
    	"VMSLEOG",
    	"NOPH",
    	"BYTE",
    	"WORD",
    	"DWORD",
    	"BRRK",
    	"LAST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/math/big/arith_decl_s390x.go

    //go:build !math_big_pure_go
    
    package big
    
    import "internal/cpu"
    
    func addVV_check(z, x, y []Word) (c Word)
    func addVV_vec(z, x, y []Word) (c Word)
    func addVV_novec(z, x, y []Word) (c Word)
    func subVV_check(z, x, y []Word) (c Word)
    func subVV_vec(z, x, y []Word) (c Word)
    func subVV_novec(z, x, y []Word) (c Word)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 503 bytes
    - Viewed (0)
Back to top