Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 261 for S1 (0.04 sec)

  1. src/internal/types/testdata/check/builtins0.go

    	assert(unsafe.Offsetof(y1.e) == 56)   // relative to S1
    
    	var y1p *S1
    	assert(unsafe.Offsetof(y1p.S0) == 32)
    
    	type P *S1
    	var p P = y1p
    	assert(unsafe.Offsetof(p.S0) == 32)
    
    	var y2 S2
    	assert(unsafe.Offsetof(y2.S1) == 0)
    	_ = unsafe.Offsetof(y2 /* ERROR "embedded via a pointer" */ .x)
    	_ = unsafe.Offsetof(y2 /* ERROR "method value" */ .m)
    
    	var s []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/testdata/asan_linkerx/p/p.go

    package p
    
    var S1 string
    var S2 string
    var S3 string
    var S4 string
    var S5 string
    var S6 string
    var S7 string
    var S8 string
    var S9 string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 152 bytes
    - Viewed (0)
  3. src/crypto/elliptic/nistec.go

    	}
    	return curve.pointToAffine(p)
    }
    
    // CombinedMult returns [s1]G + [s2]P where G is the generator. It's used
    // through an interface upgrade in crypto/ecdsa.
    func (curve *nistCurve[Point]) CombinedMult(Px, Py *big.Int, s1, s2 []byte) (x, y *big.Int) {
    	s1 = curve.normalizeScalar(s1)
    	q, err := curve.newPoint().ScalarBaseMult(s1)
    	if err != nil {
    		panic("crypto/elliptic: nistec rejected normalized scalar")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 16:19:34 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/builtins1.go

    	_ = make(S1, 10, 20)
    	_ = make /* ERROR "expects 2 or 3 arguments" */ (S1, 10, 20, 30)
    	_ = make(S2 /* ERROR "cannot make S2: no core type" */ , 10)
    
    	type M0 map[string]int
    	_ = make(map[string]int)
    	_ = make(M0)
    	_ = make(M1)
    	_ = make(M1, 10)
    	_ = make/* ERROR "expects 1 or 2 arguments" */(M1, 10, 20)
    	_ = make(M2 /* ERROR "cannot make M2: no core type" */ )
    
    	type C0 chan int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    		ml.data[0] = uint32(linkoff + s1 + s2)                /* symoff */
    		ml.data[1] = uint32(nsortsym)                         /* nsyms */
    		ml.data[2] = uint32(linkoff + s1 + s2 + s3 + s4 + s5) /* stroff */
    		ml.data[3] = uint32(s6)                               /* strsize */
    
    		if ctxt.LinkMode != LinkExternal {
    			machodysymtab(ctxt, linkoff+s1+s2)
    
    			ml := newMachoLoad(ctxt.Arch, LC_LOAD_DYLINKER, 6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/functions.go

    func _() {
    	type intSlice []int
    	g1([]int{})
    	g1(intSlice{})
    	g2(nil, 0)
    
    	type myString string
    	var s1 string
    	g3(nil, "1", myString("2"), "3")
    	g3(& /* ERROR "cannot use &s1 (value of type *string) as *myString value in argument to g3" */ s1, "1", myString("2"), "3")
    	_ = s1
    
    	type myStruct struct{x int}
    	var s2 myStruct
    	g3(nil, struct{x int}{}, myStruct{})
    	g3(&s2, struct{x int}{}, myStruct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_riscv64.S

    	fsd	f22, 152(sp)
    	fsd	f23, 160(sp)
    	fsd	f24, 168(sp)
    	fsd	f25, 176(sp)
    	fsd	f26, 184(sp)
    	fsd	f27, 192(sp)
    
    	// a0 = *fn, a1 = *setg_gcc, a2 = *g
    	mv	s1, a0
    	mv	s0, a1
    	mv	a0, a2
    	jalr	ra, s0	// call setg_gcc (clobbers x30 aka g)
    	jalr	ra, s1	// call fn
    
    	ld	x1, 0(sp)
    	ld	x8, 8(sp)
    	ld	x9, 16(sp)
    	ld	x18, 24(sp)
    	ld	x19, 32(sp)
    	ld	x20, 40(sp)
    	ld	x21, 48(sp)
    	ld	x22, 56(sp)
    	ld	x23, 64(sp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

        private static class OptionComparator implements Comparator<Option> {
            public int compare(Option opt1, Option opt2) {
                String s1 = opt1.getOpt() != null ? opt1.getOpt() : opt1.getLongOpt();
                String s2 = opt2.getOpt() != null ? opt2.getOpt() : opt2.getLongOpt();
                return s1.compareToIgnoreCase(s2);
            }
        }
    
        private static class CLIManagerExtension extends CLIManager {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * 文字列を含んでいるかどうか返します。
         *
         * @param s1
         *            文字列
         * @param s2
         *            比較する対象となる文字列
         * @return 文字列を含んでいるかどうか
         */
        public static boolean contains(final String s1, final String s2) {
            if (isEmpty(s1)) {
                return false;
            }
            return s1.indexOf(s2) >= 0;
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

            !inputs.hasSourceFiles
        }
    
        def "can register source files"() {
            when:
            inputs.files(["s1", "s2"]).skipWhenEmpty()
            then:
            inputs.hasSourceFiles
            inputs.sourceFiles.files == files("s1", "s2")
            inputFileProperties() == ['$1': ["s1", "s2"]]
        }
    
        def canRegisterSourceFile() {
            when:
            inputs.file('file').skipWhenEmpty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top