Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for VN (0.14 sec)

  1. cmd/bootstrap-peer-server_gen_test.go

    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    
    	m := v.Msgsize()
    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodeServerSystemConfig Msgsize() is inaccurate")
    	}
    
    	vn := ServerSystemConfig{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    	err = msgp.NewReader(&buf).Skip()
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 21:36:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/a.out.go

    	REG_V30
    	REG_V31
    
    	REG_RSP = REG_V31 + 32 // to differentiate ZR/SP, REG_RSP&0x1f = 31
    )
    
    // bits 0-4 indicates register: Vn
    // bits 5-8 indicates arrangement: <T>
    const (
    	REG_ARNG = obj.RBaseARM64 + 1<<10 + iota<<9 // Vn.<T>
    	REG_ELEM                                    // Vn.<T>[index]
    	REG_ELEM_END
    )
    
    // Not registers, but flags that can be combined with regular register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //                               begin+step+step, ...}. The values do not
    //                               include end. step defaults to 1.
    //  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.
    //  ValuesIn(container)        - Yields values from a C-style array, an STL
    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //                               begin+step+step, ...}. The values do not
    //                               include end. step defaults to 1.
    //  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.
    //  ValuesIn(container)        - Yields values from a C-style array, an STL
    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. operator/pkg/tpath/struct_test.go

    		wantErr   string
    	}{
    		{
    			desc: "GetStructItem",
    			nodeYAML: `
    a: va
    b: vb
    c:
      d: vd
      e:
        f: vf
    g:
      h:
      - i: vi
        j: vj
        k:
          l:
            m: vm
            n: vn
    `,
    			path: "c",
    			wantYAML: `
    d: vd
    e:
      f: vf
    `,
    			wantFound: true,
    		},
    		{
    			desc: "GetSliceEntryItem",
    			nodeYAML: `
    a: va
    b: vb
    c:
      d: vd
      e:
        f: vf
    g:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    	"LPT7",
    	"LPT8",
    	"LPT9",
    }
    
    // SplitPathVersion returns prefix and major version such that prefix+pathMajor == path
    // and version is either empty or "/vN" for N >= 2.
    // As a special case, gopkg.in paths are recognized directly;
    // they require ".vN" instead of "/vN", and for all N, not just N >= 2.
    // SplitPathVersion returns with ok = false when presented with
    // a path whose last path element does not satisfy the constraints
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. src/math/rand/rand_test.go

    func initNorm() (testKn []uint32, testWn, testFn []float32) {
    	const m1 = 1 << 31
    	var (
    		dn float64 = rn
    		tn         = dn
    		vn float64 = 9.91256303526217e-3
    	)
    
    	testKn = make([]uint32, 128)
    	testWn = make([]float32, 128)
    	testFn = make([]float32, 128)
    
    	q := vn / math.Exp(-0.5*dn*dn)
    	testKn[0] = uint32((dn / q) * m1)
    	testKn[1] = 0
    	testWn[0] = float32(q / m1)
    	testWn[127] = float32(dn / m1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. src/math/rand/v2/rand_test.go

    func initNorm() (testKn []uint32, testWn, testFn []float32) {
    	const m1 = 1 << 31
    	var (
    		dn float64 = rn
    		tn         = dn
    		vn float64 = 9.91256303526217e-3
    	)
    
    	testKn = make([]uint32, 128)
    	testWn = make([]float32, 128)
    	testFn = make([]float32, 128)
    
    	q := vn / math.Exp(-0.5*dn*dn)
    	testKn[0] = uint32((dn / q) * m1)
    	testKn[1] = 0
    	testWn[0] = float32(q / m1)
    	testWn[127] = float32(dn / m1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/InMemoryPgpSignatoryProviderIntegrationSpec.groovy

    lUeEGJLQ8kahtBlGb28gQmFyIDxmb29AZXhhbXBsZS5jb20+iQFUBBMBCAA+FiEE
    QtS6pb0ASq/RhzRI/Urkj6otOZIFAlxb6KECGwMFCQPCZwAFCwkIBwIGFQoJCAsC
    BBYCAwECHgECF4AACgkQ/Urkj6otOZJHhAf+MrWpiWDGsu9yW0lbln7FQpXvhNim
    mO4aykYcLRnttr4fbbTaTiq1S+Vn/5/zmcfkGnjdCM5RCO/nZA1mcXpg8pmd+emX
    SS72owHVDq1we2QD+/WQljUDY4Qdf0AxqPQm+ARGWC2RwgNA6CSH3Q72fE2por5H
    FXti3kjq79NRt8OG+iUZ7W00/v//wzVkQw4m3iTjy2G1Ih8tPEkxEjKoNTfXUNMP
    TIHLAdo5/mwj/4M1aK3DeSQkdJtkK2RUTUghrOTZus1Gu+5jJjCbjJp7W1Gl5qsZ
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/anames.go

    	"KMCTR",
    	"VA",
    	"VAB",
    	"VAH",
    	"VAF",
    	"VAG",
    	"VAQ",
    	"VACC",
    	"VACCB",
    	"VACCH",
    	"VACCF",
    	"VACCG",
    	"VACCQ",
    	"VAC",
    	"VACQ",
    	"VACCC",
    	"VACCCQ",
    	"VN",
    	"VNC",
    	"VAVG",
    	"VAVGB",
    	"VAVGH",
    	"VAVGF",
    	"VAVGG",
    	"VAVGL",
    	"VAVGLB",
    	"VAVGLH",
    	"VAVGLF",
    	"VAVGLG",
    	"VCKSM",
    	"VCEQ",
    	"VCEQB",
    	"VCEQH",
    	"VCEQF",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top