Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for sweet (0.04 sec)

  1. LICENSES/vendor/github.com/cilium/ebpf/LICENSE

    = vendor/github.com/cilium/ebpf licensed under: =
    
    MIT License
    
    Copyright (c) 2017 Nathan Sweet
    Copyright (c) 2018, 2019 Cloudflare
    Copyright (c) 2019 Authors of Cilium
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  2. docs/changelogs/upgrading_to_okhttp_4.md

    Depending on code in this package is bad and will cause you problems with any upgrade! But the 4.x
    will be particularly painful to naughty developers that import from this package! We changed a lot
    to take advantage of sweet Kotlin features.
    
    #### Credentials.basic()
    
    The username and password parameters to `Credentials.basic()` are now non-null strings. In OkHttp
    3.x, null would yield a username or password of "null".
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. src/strings/replace_test.go

    		testCase{gen1, "XiX", "YiY"},
    		testCase{gen1, "", ""},
    	)
    
    	// gen2 has multiple old strings with no pairwise common prefix.
    	gen2 := NewReplacer(
    		"roses", "red",
    		"violets", "blue",
    		"sugar", "sweet",
    	)
    	testCases = append(testCases,
    		testCase{gen2, "roses are red, violets are blue...", "red are red, blue are blue..."},
    		testCase{gen2, "", ""},
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  4. src/internal/concurrent/hashtriemap.go

    		e := n.entry()
    		for e != nil {
    			if !yield(e.key, e.value) {
    				return false
    			}
    			e = e.overflow.Load()
    		}
    	}
    	return true
    }
    
    const (
    	// 16 children. This seems to be the sweet spot for
    	// load performance: any smaller and we lose out on
    	// 50% or more in CPU performance. Any larger and the
    	// returns are minuscule (~1% improvement for 32 children).
    	nChildrenLog2 = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. LICENSE

    WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
    DAMAGE.
    
    com.esotericsoftware.kryo:kryo
    com.esotericsoftware.minlog:minlog
    Copyright (c) 2008-2018, Nathan Sweet All rights reserved.
    
    Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LongMath.java

             * and increasing the threshold to 2^32 doesn't pay for itself, and adding another enum
             * constant hurts performance further -- I suspect because bimorphic implementation is a
             * sweet spot for the JVM.
             */
            return (a * b) % m;
          }
    
          @Override
          long squareMod(long a, long m) {
            return (a * a) % m;
          }
        },
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LongMath.java

             * and increasing the threshold to 2^32 doesn't pay for itself, and adding another enum
             * constant hurts performance further -- I suspect because bimorphic implementation is a
             * sweet spot for the JVM.
             */
            return (a * b) % m;
          }
    
          @Override
          long squareMod(long a, long m) {
            return (a * a) % m;
          }
        },
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. src/runtime/mcentral.go

    	// swept set. Likewise, allocating an in-use span pushes it
    	// on the swept set.
    	//
    	// Some parts of the sweeper can sweep arbitrary spans, and hence
    	// can't remove them from the unswept set, but will add the span
    	// to the appropriate swept list. As a result, the parts of the
    	// sweeper and mcentral that do consume from the unswept list may
    	// encounter swept spans, and these should be ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/runtime/mgcsweep.go

    	// no more spans to be swept. In this case, either s has already
    	// been swept, or is about to be acquired for sweeping and swept.
    	sl := sweep.active.begin()
    	if sl.valid {
    		// The caller must be sure that the span is a mSpanInUse span.
    		if s, ok := sl.tryAcquire(s); ok {
    			s.sweep(false)
    			sweep.active.end(sl)
    			return
    		}
    		sweep.active.end(sl)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. src/runtime/traceruntime.go

    	mSyscallID int64
    
    	// maySweep indicates the sweep events should be traced.
    	// This is used to defer the sweep start event until a span
    	// has actually been swept.
    	maySweep bool
    
    	// inSweep indicates that at least one sweep event has been traced.
    	inSweep bool
    
    	// swept and reclaimed track the number of bytes swept and reclaimed
    	// by sweeping in the current sweep loop (while maySweep was true).
    	swept, reclaimed uintptr
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top