Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 110 for S1 (0.07 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            }
    
            ArtifactRepository other = (ArtifactRepository) obj;
    
            return eq(getId(), other.getId());
        }
    
        protected static <T> boolean eq(T s1, T s2) {
            return Objects.equals(s1, s2);
        }
    
        public Authentication getAuthentication() {
            return authentication;
        }
    
        public void setAuthentication(Authentication authentication) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 11K bytes
    - Viewed (0)
  2. src/go/types/typeset.go

    // hasTerms reports whether the type set has specific type terms.
    func (s *_TypeSet) hasTerms() bool { return !s.terms.isEmpty() && !s.terms.isAll() }
    
    // subsetOf reports whether s1 ⊆ s2.
    func (s1 *_TypeSet) subsetOf(s2 *_TypeSet) bool { return s1.terms.subsetOf(s2.terms) }
    
    // TODO(gri) TypeSet.is and TypeSet.underIs should probably also go into termlist.go
    
    // is calls f with the specific type terms of s and reports whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/unicode/utf8/utf8_test.go

    		}
    		b1 := b[0 : len(b)-1]
    		if FullRune(b1) {
    			t.Errorf("FullRune(%q) = true, want false", b1)
    		}
    		s1 := string(b1)
    		if FullRuneInString(s1) {
    			t.Errorf("FullRune(%q) = true, want false", s1)
    		}
    	}
    	for _, s := range []string{"\xc0", "\xc1"} {
    		b := []byte(s)
    		if !FullRune(b) {
    			t.Errorf("FullRune(%q) = false, want true", s)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typeset.go

    // hasTerms reports whether the type set has specific type terms.
    func (s *_TypeSet) hasTerms() bool { return !s.terms.isEmpty() && !s.terms.isAll() }
    
    // subsetOf reports whether s1 ⊆ s2.
    func (s1 *_TypeSet) subsetOf(s2 *_TypeSet) bool { return s1.terms.subsetOf(s2.terms) }
    
    // TODO(gri) TypeSet.is and TypeSet.underIs should probably also go into termlist.go
    
    // is calls f with the specific type terms of s and reports whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/apis/rbac/helpers.go

    func (r *PolicyRuleBuilder) RuleOrDie() PolicyRule {
    	ret, err := r.Rule()
    	if err != nil {
    		panic(err)
    	}
    	return ret
    }
    
    func combine(s1, s2 []string) []string {
    	s := sets.NewString(s1...)
    	s.Insert(s2...)
    	return s.List()
    }
    
    // Rule returns PolicyRule and error.
    func (r *PolicyRuleBuilder) Rule() (PolicyRule, error) {
    	if len(r.PolicyRule.Verbs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  6. src/expvar/expvar_test.go

    	var m, m1, m2 Map
    	m.Set("map1", &m1)
    	m1.Add("a", 1)
    	m1.Add("z", 2)
    	m.Set("map2", &m2)
    	for i := 0; i < 9; i++ {
    		m2.Add(strconv.Itoa(i), int64(i))
    	}
    	var s1, s2 String
    	m.Set("str1", &s1)
    	s1.Set("hello, world!")
    	m.Set("str2", &s2)
    	s2.Set("fizz buzz")
    	b.ResetTimer()
    
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		_ = m.String()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. cmd/encryption-v1_test.go

    			sum := int64(0)
    			for _, i := range oi.Parts {
    				sum += i.Size
    			}
    			return sum
    		}
    	)
    
    	s1 := []int64{5487701, 5487799, 3}
    	s2 := repeat(5487701, 5)
    	s3 := repeat(maxPartSz, 10000)
    	testMPs := []struct {
    		decSizes []int64
    		oi       ObjectInfo
    	}{
    		{s1, mkMPObj(s1)},
    		{s2, mkMPObj(s2)},
    		{s3, mkMPObj(s3)},
    	}
    
    	// This function is a reference (re-)implementation of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 24 04:17:08 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  8. test/live_regabi.go

    //go:noescape
    func call27(func())
    
    // concatstring slice should die on return
    
    var s1, s2, s3, s4, s5, s6, s7, s8, s9, s10 string
    
    func f28(b bool) {
    	if b {
    		printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10) // ERROR "stack object .autotmp_[0-9]+ \[10\]string$"
    	}
    	printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
    	printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_amd64.s

    	CALL p256MulInternal(SB)	// z2ˆ3
    	LDt (y1in)
    	CALL p256MulInternal(SB)	// s1 = z2ˆ3*y1
    	ST (s1)
    
    	LDacc (z1in)
    	CALL p256SqrInternal(SB)	// z1ˆ2
    	ST (z1sqr)
    	LDt (z1in)
    	CALL p256MulInternal(SB)	// z1ˆ3
    	LDt (y2in)
    	CALL p256MulInternal(SB)	// s2 = z1ˆ3*y2
    	ST (s2)
    
    	LDt (s1)
    	CALL p256SubInternal(SB)	// r = s2 - s1
    	ST (r)
    	CALL p256IsZero(SB)
    	MOVQ AX, points_eq
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm_arm64.s

    	LDx(y1in)
    	CALL	p256MulInternal<>(SB)    // s1 = z2ˆ3*y1
    	STy(s1)
    
    	LDx(z1in)
    	CALL	p256SqrInternal<>(SB)    // z1^2
    	STy(z1sqr)
    
    	CALL	p256MulInternal<>(SB)    // z1^3
    
    	LDx(y2in)
    	CALL	p256MulInternal<>(SB)    // s2 = z1ˆ3*y2
    
    	LDx(s1)
    	CALL	p256SubInternal<>(SB)    // r = s2 - s1
    	STx(r)
    
    	MOVD	$1, t2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top