Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 485 for i$ (0.09 sec)

  1. src/crypto/des/des_test.go

    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		c.Decrypt(out, tt.out)
    	}
    }
    
    func BenchmarkTDESEncrypt(b *testing.B) {
    	tt := encryptTripleDESTests[0]
    	c, err := des.NewTripleDESCipher(tt.key)
    	if err != nil {
    		b.Fatal("NewCipher:", err)
    	}
    	out := make([]byte, len(tt.in))
    	b.SetBytes(int64(len(out)))
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		c.Encrypt(out, tt.in)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				// extend defaults with passed data
    				s = $.extend(true, {}, $.jstree.defaults, b);
    				s.plugins = b.plugins;
    				$.each(plugins, function (i, val) {
    					if($.inArray(i, s.plugins) === -1) { s[i] = null; delete s[i]; }
    					else { t.push(i); }
    				});
    				s.plugins = t;
    
    				// push the new object to the instances array (at the same time set the default classes to the container) and init
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    			quoted = true
    			quote = rune
    			continue
    		case unicode.IsSpace(rune):
    			if quoted || i > 0 {
    				quoted = false
    				args = append(args, string(arg[:i]))
    				i = 0
    			}
    			continue
    		}
    		arg[i] = rune
    		i++
    	}
    	if quoted || i > 0 {
    		args = append(args, string(arg[:i]))
    	}
    	if quote != 0 {
    		err = errors.New("unclosed quote")
    	} else if escaped {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle_test.go

    	// matching rules
    	var rules []Rule
    	for i := 1; i <= 10; i++ {
    		rules = append(rules, Rule{
    			ID:     strconv.Itoa(i),
    			Status: "Enabled",
    			NoncurrentVersionExpiration: NoncurrentVersionExpiration{
    				NewerNoncurrentVersions: i,
    				NoncurrentDays:          ExpirationDays(i),
    			},
    		})
    	}
    	lc := Lifecycle{
    		Rules: rules,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) cloneSuffix(a AST) AST {
    	i := 0
    	if len(st.str) > 1 && st.str[0] == '.' && (isLower(st.str[1]) || isDigit(st.str[1]) || st.str[1] == '_') {
    		i += 2
    		for len(st.str) > i && (isLower(st.str[i]) || isDigit(st.str[i]) || st.str[i] == '_') {
    			i++
    		}
    	}
    	for len(st.str) > i+1 && st.str[i] == '.' && isDigit(st.str[i+1]) {
    		i += 2
    		for len(st.str) > i && isDigit(st.str[i]) {
    			i++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

       */
      private static <I extends Iterator<?>> Iterator<I> consumingForArray(@Nullable I... elements) {
        return new UnmodifiableIterator<I>() {
          int index = 0;
    
          @Override
          public boolean hasNext() {
            return index < elements.length;
          }
    
          @Override
          public I next() {
            if (!hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

       */
      private static <I extends Iterator<?>> Iterator<I> consumingForArray(@Nullable I... elements) {
        return new UnmodifiableIterator<I>() {
          int index = 0;
    
          @Override
          public boolean hasNext() {
            return index < elements.length;
          }
    
          @Override
          public I next() {
            if (!hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers.go

    func (a byEvictionPriority) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
    
    // Less ranks memory before all other resources, and ranks thresholds with no resource to reclaim last
    func (a byEvictionPriority) Less(i, j int) bool {
    	_, jSignalHasResource := signalToResource[a[j].Signal]
    	return a[i].Signal == evictionapi.SignalMemoryAvailable || a[i].Signal == evictionapi.SignalAllocatableMemoryAvailable || !jSignalHasResource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	const count = 20
    	for i := 0; i < count; i++ {
    		_, err := tmpl.New(fmt.Sprintf("x%d.html", i)).Parse(`{{ template "templ.html" .}}`)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	var wg sync.WaitGroup
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			for j := 0; j < count; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    func (v compilationUnitByStartPC) Swap(i, j int) { v[i], v[j] = v[j], v[i] }
    
    func (v compilationUnitByStartPC) Less(i, j int) bool {
    	switch {
    	case len(v[i].Textp) == 0 && len(v[j].Textp) == 0:
    		return v[i].Lib.Pkg < v[j].Lib.Pkg
    	case len(v[i].Textp) != 0 && len(v[j].Textp) == 0:
    		return true
    	case len(v[i].Textp) == 0 && len(v[j].Textp) != 0:
    		return false
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top