Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 296 for defeats (0.11 sec)

  1. test/noinit.go

    }
    
    var (
    	copy_zero     = zero
    	copy_one      = one
    	copy_pi       = pi
    	copy_slice    = slice
    	copy_sliceInt = sliceInt
    	// copy_hello    = hello // static init of copied strings defeats link -X; see #34675
    
    	// Could be handled without an initialization function, but
    	// requires special handling for "a = []byte("..."); b = a"
    	// which is not a likely case.
    	// copy_bytes = bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/time/sys_unix.go

    // for testing: whatever interrupts a sleep
    func interrupt() {
    	// There is no mechanism in wasi to interrupt the call to poll_oneoff
    	// used to implement runtime.usleep so this function does nothing, which
    	// somewhat defeats the purpose of TestSleep but we are still better off
    	// validating that time elapses when the process calls time.Sleep than
    	// skipping the test altogether.
    	if runtime.GOOS != "wasip1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    CI already built this commit -- why should you re-do that work?
    
    === Switching branches
    
    During local development, it is not uncommon to switch branches several times per day.
    This defeats <<incremental_build.adoc#incremental_build,incremental build>> (i.e., `UP-TO-DATE` checks), but this issue is mitigated via use of the local build cache.
    You might run a build on Branch A, which will populate the local cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

         * @param resolutionResult the resolution result information necessary for locking
         * @param changingResolvedModules any modules that are resolved and marked as changing which defeats locking purpose
         */
        void persistResolvedDependencies(String lockId, DisplayName lockOwner, Set<ModuleComponentIdentifier> resolutionResult, Set<ModuleComponentIdentifier> changingResolvedModules);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/os/zero_copy_linux.go

    	// doubt that splice(2) could help non-streams, cuz they usually send small frames respectively
    	// and one splice call would result in one frame.
    	// splice(2) is suitable for large data but the generation of fragments defeats its edge here.
    	// Therefore, don't bother to try splice if the r is not a streaming descriptor.
    	if pfd == nil || !pfd.IsStream {
    		return
    	}
    
    	written, handled, err = pollSplice(&f.pfd, pfd, remain)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/crypto/rsa/pkcs1v15.go

    // attacker to brute-force it. If they can do that then they can learn whether a
    // random value was used (because it'll be different for the same ciphertext)
    // and thus whether the padding was correct. This also defeats the point of this
    // function. Using at least a 16-byte key will protect against this attack.
    //
    // This method implements protections against Bleichenbacher chosen ciphertext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/runtime/string_test.go

    package runtime_test
    
    import (
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"unicode/utf8"
    )
    
    // Strings and slices that don't escape and fit into tmpBuf are stack allocated,
    // which defeats using AllocsPerRun to test other optimizations.
    const sizeNoStack = 100
    
    func BenchmarkCompareStringEqual(b *testing.B) {
    	bytes := []byte("Hello Gophers!")
    	s1, s2 := string(bytes), string(bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  8. src/runtime/HACKING.md

       somewhere else that may concurrently access the variable.
    
    2. Non-atomic access allows for automatic race detection. The runtime
       doesn't currently have a race detector, but it may in the future.
       Atomic access defeats the race detector, while non-atomic access
       allows the race detector to check your assumptions.
    
    3. Non-atomic access may improve performance.
    
    Of course, any non-atomic access to a shared variable should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/match.go

    	// we have a winner, but we do still need to do the tie-breaker computations.
    	// We use "beaten" to keep track if we still need to do the checks.
    	beaten := false // true if the new pair defeats the current one.
    	if c != m.conf {
    		if c < m.conf {
    			return
    		}
    		beaten = true
    	}
    
    	// Tie-breaker rules:
    	// We prefer if the pre-maximized language was specified and identical.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    + " java.lang.NullPointerException]]");
      }
    
      public void testSetIndirectSelf_toString() {
        final SettableFuture<Object> orig = SettableFuture.create();
        // unlike the above this indirection defeats the trivial cycle detection and causes a SOE
        orig.setFuture(
            new ForwardingListenableFuture<Object>() {
              @Override
              protected ListenableFuture<Object> delegate() {
                return orig;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top