Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for S1 (0.08 sec)

  1. 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)
  2. src/cmd/internal/notsha256/sha256block_ppc64x.s

    	VSHASIGMAW	$0, xj_1, $0, s0; \
    	VSEL		g, f, e, FUNC; \
    	VSHASIGMAW	$15, e, $1, S1; \
    	VADDUWM		xi, h, h; \
    	VSHASIGMAW	$0, a, $1, S0; \
    	VSHASIGMAW	$15, xj_14, $0, s1; \
    	VADDUWM		FUNC, h, h; \
    	VXOR		b, a, FUNC; \
    	VADDUWM		xj_9, xj, xj; \
    	VADDUWM		S1, h, h; \
    	VSEL		b, c, FUNC, FUNC; \
    	VADDUWM		KI, g, g; \
    	VADDUWM		h, d, d; \
    	VADDUWM		FUNC, S0, S0; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. test/codegen/comparisons.go

    type T1 struct {
    	a [8]byte
    }
    
    func CompareStruct1(s1, s2 T1) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:-`CALL`
    	return s1 == s2
    }
    
    type T2 struct {
    	a [16]byte
    }
    
    func CompareStruct2(s1, s2 T2) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:-`CALL`
    	return s1 == s2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. test/escape2.go

    	s := string(b)        // ERROR "string\(b\) escapes to heap$"
    	s1 := s[0:1]
    	sink = s1 // ERROR "s1 escapes to heap$"
    }
    
    func addstr0() {
    	s0 := "a"
    	s1 := "b"
    	s := s0 + s1 // ERROR "s0 \+ s1 does not escape$"
    	_ = s
    }
    
    func addstr1() {
    	s0 := "a"
    	s1 := "b"
    	s := "c"
    	s += s0 + s1 // ERROR "s0 \+ s1 does not escape$"
    	_ = s
    }
    
    func addstr2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. test/escape2n.go

    	s := string(b)        // ERROR "string\(b\) escapes to heap$"
    	s1 := s[0:1]
    	sink = s1 // ERROR "s1 escapes to heap$"
    }
    
    func addstr0() {
    	s0 := "a"
    	s1 := "b"
    	s := s0 + s1 // ERROR "s0 \+ s1 does not escape$"
    	_ = s
    }
    
    func addstr1() {
    	s0 := "a"
    	s1 := "b"
    	s := "c"
    	s += s0 + s1 // ERROR "s0 \+ s1 does not escape$"
    	_ = s
    }
    
    func addstr2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    }
    
    // stageEqual returns true if s1 and s2 are super set of each other
    func stageEqual(s1, s2 []audit.Stage) bool {
    	m1 := make(map[audit.Stage]bool)
    	m2 := make(map[audit.Stage]bool)
    	for _, s := range s1 {
    		m1[s] = true
    	}
    	for _, s := range s2 {
    		m2[s] = true
    	}
    	if len(m1) != len(m2) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  7. src/math/erf.go

    //              Q1(s) = degree 6 poly in s
    //
    //      3. For x in [1.25,1/0.35(~2.857143)],
    //              erfc(x) = (1/x)*exp(-x*x-0.5625+R1/S1)
    //              erf(x)  = 1 - erfc(x)
    //         where
    //              R1(z) = degree 7 poly in z, (z=1/x**2)
    //              S1(z) = degree 8 poly in z
    //
    //      4. For x in [1/0.35,28]
    //              erfc(x) = (1/x)*exp(-x*x-0.5625+R2/S2) if x > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    	}
    	labelAzAz2 := map[string]string{
    		"az": "az2",
    	}
    	labelRgChinaAzAz1 := map[string]string{
    		"region": "China",
    		"az":     "az1",
    	}
    	podLabelSecurityS1 := map[string]string{
    		"security": "S1",
    	}
    	podLabelSecurityS2 := map[string]string{
    		"security": "S2",
    	}
    	// considered only preferredDuringSchedulingIgnoredDuringExecution in pod affinity
    	stayWithS1InRegion := &v1.Affinity{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader_test.go

    	irm := ldr.IsReflectMethod(es1)
    	if 0 != es1val {
    		t.Errorf("expected IsReflectMethod(es1) value of 0, got %v", irm)
    	}
    }
    
    func sameRelocSlice(s1 *Relocs, s2 []Reloc) bool {
    	if s1.Count() != len(s2) {
    		return false
    	}
    	for i := 0; i < s1.Count(); i++ {
    		r1 := s1.At(i)
    		r2 := &s2[i]
    		if r1.Sym() != r2.Sym() ||
    			r1.Type() != r2.Type() ||
    			r1.Off() != r2.Off() ||
    			r1.Add() != r2.Add() ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/float_test.go

    	}
    
    	// float32 comparisons
    	s1, s3, s5, s9 := float32(1), float32(3), float32(5), float32(9)
    	if s3 == s5 {
    		t.Errorf("s3 == s5 returned true")
    	}
    	if s3 != s3 {
    		t.Errorf("s3 != s3 returned true")
    	}
    	if s3 > s5 {
    		t.Errorf("s3 > s5 returned true")
    	}
    	if s3 >= s9 {
    		t.Errorf("s3 >= s9 returned true")
    	}
    	if s5 < s1 {
    		t.Errorf("s5 < s1 returned true")
    	}
    	if s9 <= s1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top