Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 175 for chancap (0.11 sec)

  1. src/crypto/ecdsa/ecdsa_test.go

    		t.Error("k is zero")
    	} else if p.Bytes()[0] != 4 {
    		t.Error("p is infinity")
    	}
    	if loopCount == 0 {
    		t.Error("zero was not rejected")
    	}
    	loopCount = 0
    
    	// P-256 has a 2⁻³² chance or randomly hitting a rejection. For P-224 it's
    	// 2⁻¹¹², for P-384 it's 2⁻¹⁹⁴, and for P-521 it's 2⁻²⁶², so if we hit in
    	// tests, something is horribly wrong. (For example, we are masking the
    	// wrong bits.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/runtime/arena_test.go

    	})
    	t.Run("Finalizer", func(t *testing.T) {
    		testUserArenaLiveness(t, true)
    	})
    }
    
    func testUserArenaLiveness(t *testing.T, useArenaFinalizer bool) {
    	// Disable the GC so that there's zero chance we try doing anything arena related *during*
    	// a mark phase, since otherwise a bunch of arenas could end up on the fault list.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

            // success
          }
        }
      }
    
      /*
       * We've split testFuzzyCompare() into multiple tests so that our internal Android test runner has
       * a better chance of completing each within its per-test-method timeout.
       */
    
      public void testFuzzyCompare0() {
        runTestFuzzyCompare(0);
      }
    
      public void testFuzzyCompare1() {
        runTestFuzzyCompare(1);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    extensions and documentation located in this repository.
    For other extensions and components, see the 
    [Gradle Community Resources](https://gradle.org/resources/).
    
    This guide will help you to...
    
    * maximize the chance of your changes being accepted
    * work on the Gradle code base
    * get help if you encounter trouble
    
    ## Before you start
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_distributed_test.cc

      TFE_ContextSetServerDef(ctx, 0, serialized.data(), serialized.size(), status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      // Use large matrices so that RPCs don't return before we get a chance
      // to call TFE_DeleteContext.
      TFE_TensorHandle* h0_task0 = TestMatrixTensorHandle100x100(ctx);
      TFE_TensorHandle* h1_task0 = TestMatrixTensorHandle100x100(ctx);
      const char remote_device_name[] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        }
    
        override fun flush() = safely {
            captureOutput.flush()
            super.flush()
        }
    
        fun stop() = safely {
            isCapturing!!.remove()
            // Give a chance for other threads' weak references to the local to be GCed if any
            isCapturing = null
        }
    
        private
        fun safely(block: () -> Unit) =
            try {
                synchronized(this, block)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. src/runtime/mranges.go

    	// arenas which is completely discontiguous. ~160µs is still a lot, but in
    	// practice most platforms have 64 MiB arenas (which cuts this by a factor
    	// of 16) and Go heaps are usually mostly contiguous, so the chance that
    	// an addrRanges even grows to that size is extremely low.
    
    	// An empty range has no effect on the set of addresses represented
    	// by a, but passing a zero-sized range is almost always a bug.
    	if r.size() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

       */
      @Test
      fun reusePlanAndNewConnectRace() {
        val plan0 = routePlanner.addPlan()
        plan0.tcpConnectDelayNanos = 250.ms
        plan0.yieldBeforeTcpConnectReturns = true // Yield so we get a chance to take plan1...
        val plan1 = routePlanner.addPlan()
        plan1.connectState = TLS_CONNECTED
        plan1.yieldBeforePlanReturns = true // ... but let plan 0 connect before we act upon it.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device.cc

      // We lazily create the client because the platform commits to the
      // details of the host hardware when the client is created, so we
      // don't want to do it until we get a chance to hook the platform up
      // to a simulator.
    
      xla::LocalClientOptions options;
      options.set_platform(platform_)
          .set_allowed_devices(allowed_devices_)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top