- Sort Score
- Result 10 results
- Languages All
Results 3241 - 3250 of 3,989 for Kull (0.02 sec)
-
buildscripts/checkdeps.sh
return ;; *) echo "OS '${KNAME}' is not supported. Supported OS: [Linux, FreeBSD, OpenBSD, NetBSD, Darwin, DragonFly]" exit 1 ;; esac } assert_check_golang_env() { if ! which go >/dev/null 2>&1; then echo "Cannot find go binary in your PATH configuration, please refer to Go installation document at https://golang.org/doc/install" exit 1 fi
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 3.4K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java
return (int) Math.pow(a, 1.0 / concentration); } @AfterExperiment void tearDown() { double req = requests.get(); double hit = req - misses.get(); // Currently, this is going into /dev/null, but I'll fix that System.out.println("hit rate: " + hit / req); } // for proper distributions later: // import JSci.maths.statistics.ProbabilityDistribution;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/HttpHeadersTest.java
throws IllegalAccessException { for (Field field : relevantFields(clazz)) { assertEquals( upperToHttpHeaderName(field.getName(), specialCases, uppercaseAcronyms), field.get(null)); } } // Visible for other tests to use static ImmutableSet<Field> relevantFields(Class<?> cls) { ImmutableSet.Builder<Field> builder = ImmutableSet.builder();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 22 21:08:08 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrException.java
public class NdrException extends CIFSException { /** * */ private static final long serialVersionUID = 7621650016319792189L; public static final String NO_NULL_REF = "ref pointer cannot be null"; public static final String INVALID_CONFORMANCE = "invalid array conformance"; public NdrException ( String msg ) { super(msg); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ActivationOSTest.java
*/ class ActivationOSTest { @Test void testHashCodeNullSafe() { new ActivationOS().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new ActivationOS().equals(null)); new ActivationOS().equals(new ActivationOS()); } @Test void testEqualsIdentity() { ActivationOS thing = new ActivationOS(); assertTrue(thing.equals(thing)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/PluginConfigurationTest.java
@Test void testHashCodeNullSafe() { new PluginConfiguration().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new PluginConfiguration().equals(null)); new PluginConfiguration().equals(new PluginConfiguration()); } @Test void testEqualsIdentity() { PluginConfiguration thing = new PluginConfiguration();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ReportPluginTest.java
*/ class ReportPluginTest { @Test void testHashCodeNullSafe() { new ReportPlugin().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new ReportPlugin().equals(null)); new ReportPlugin().equals(new ReportPlugin()); } @Test void testEqualsIdentity() { ReportPlugin thing = new ReportPlugin(); assertTrue(thing.equals(thing)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ReportingTest.java
* */ class ReportingTest { @Test void testHashCodeNullSafe() { new Reporting().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Reporting().equals(null)); new Reporting().equals(new Reporting()); } @Test void testEqualsIdentity() { Reporting thing = new Reporting(); assertTrue(thing.equals(thing)); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
tests/test_tutorial/test_query_params_str_validations/test_tutorial011_an.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 3.9K bytes - Viewed (0) -
Makefile.overrides.mk
.DEFAULT_GOAL := default # This repository has been enabled for BUILD_WITH_CONTAINER=1. Some # test cases fail within Docker, and Mac + Docker isn't quite perfect. # For more information see: https://github.com/istio/istio/pull/19322/ BUILD_WITH_CONTAINER ?= 1 CONTAINER_OPTIONS = --mount type=bind,source=/tmp,destination=/tmp --net=host export COMMONFILES_POSTPROCESS = tools/commonfiles-postprocess.sh ifeq ($(BUILD_WITH_CONTAINER),1)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Mar 28 17:29:39 UTC 2023 - 1.4K bytes - Viewed (0)