- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 121 for dumb (0.08 sec)
-
guava-tests/test/com/google/common/cache/CacheEvictionTest.java
CacheTesting.checkValidState(cache); } /** * With an unlimited-size cache with maxWeight of 0, entries weighing 0 should still be cached. * Entries with positive weight should not be cached (nor dump existing cache). */ public void testEviction_maxWeight_zero() { CountingRemovalListener<Integer, Integer> removalListener = countingRemovalListener(); IdentityLoader<Integer> loader = identityLoader();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 15K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/route_test.go
gotOut := &bytes.Buffer{} cw := &ConfigWriter{Stdout: gotOut} cd, _ := os.ReadFile(fmt.Sprintf("testdata/routes/%s/configdump.json", tt.name)) if err := cw.Prime(cd); err != nil { t.Errorf("failed to parse config dump: %s", err) } err := cw.PrintRouteSummary(RouteFilter{Verbose: true}) assert.NoError(t, err) wantOutputFile := path.Join("testdata/routes", tt.name, "output.txt")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 2.8K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt
override fun doExecute(bufferedWriter: BufferedWriter) { val packages = Implementation(excludes.get(), includes.get()).collectPackages(classpath.files.map(File::toPath)) packages.dump(false, object : ErroringAction<String>() { @Throws(Exception::class) override fun doExecute(s: String) { bufferedWriter.write(s)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 19:14:16 UTC 2024 - 7.1K bytes - Viewed (0) -
build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt
private fun getRelocatedPackages(files: Sequence<Path>): List<String> = mutableListOf<String>().apply { implementation.collectPackages(files.toList()).dump(false, this::add) } @Test fun `generates a curated list of package prefixes from directories`() { assertEquals(EXPECTED_PACKAGE_LIST, getRelocatedPackages(someClasses())) } @Test
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 19:14:16 UTC 2024 - 5K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.invalid_header_for_request_file=Invalid header: {0} errors.could_not_delete_logged_in_user=Could not delete logged in user. errors.unauthorized_request=Unauthorized request. errors.failed_to_print_thread_dump=Failed to print thread dump. errors.file_is_not_supported={0} is not supported. errors.plugin_file_is_not_found={0} is not found. errors.failed_to_install_plugin=Failed to install {0}. errors.failed_to_find_plugins=Failed to access available plugins.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.5K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.invalid_header_for_request_file=Invalid header: {0} errors.could_not_delete_logged_in_user=Could not delete logged in user. errors.unauthorized_request=Unauthorized request. errors.failed_to_print_thread_dump=Failed to print thread dump. errors.file_is_not_supported={0} is not supported. errors.plugin_file_is_not_found={0} is not found. errors.failed_to_install_plugin=Failed to install {0}. errors.failed_to_find_plugins=Failed to access available plugins.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.4K bytes - Viewed (0) -
src/main/resources/fess_message_fr.properties
errors.could_not_delete_logged_in_user=Impossible de supprimer l'utilisateur connecté. errors.unauthorized_request=Requête non autorisée. errors.failed_to_print_thread_dump=Impossible d'afficher le dump du thread. errors.file_is_not_supported={0} n'est pas pris en charge. errors.plugin_file_is_not_found={0} est introuvable. errors.failed_to_install_plugin=Échec de l'installation de {0}.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Feb 06 22:59:17 UTC 2023 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
String domA = ntlm.getUserDomain() != null ? ntlm.getUserDomain().toUpperCase() : null; String domB = this.getUserDomain() != null ? this.getUserDomain().toUpperCase() : null; return ntlm.type == this.type && Objects.equals(domA, domB) && ntlm.getUsername().equalsIgnoreCase(this.getUsername()) && Objects.equals(getPassword(), ntlm.getPassword()); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven3ScopeManagerConfiguration.java
nonTransitiveDependencyScopes)); return result; } // === public static void main(String... args) { ScopeManagerDump.dump(Maven3ScopeManagerConfiguration.INSTANCE); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0) -
istioctl/pkg/writer/compare/sds/util.go
} result.SecretMeta = meta result.Valid = meta.Valid return result, nil } result.Valid = false return result, nil } // GetEnvoySecrets parses the secrets section of the config dump into []SecretItem func GetEnvoySecrets( wrapper *configdump.Wrapper, ) ([]SecretItem, error) { secretConfigDump, err := wrapper.GetSecretConfigDump() if err != nil { return nil, err }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 19:52:53 UTC 2024 - 8.5K bytes - Viewed (0)