- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 24 for getCfg (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/config/policy/plugin/config.go
return args, err } getCfg := func(cfgParam string) string { // As parameters are already validated, we skip checking // if the config param was found. val, _, _ := s.ResolveConfigParam(config.PolicyPluginSubSys, config.Default, cfgParam, false) return val } pluginURL := getCfg(URL) if pluginURL == "" { return args, nil }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 5.8K bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
final BeanDesc beanDesc = new BeanDescImpl(MyBean.class); final PropertyDesc propDesc = beanDesc.getPropertyDesc("fff"); propDesc.setValue(myBean, new BigDecimal(2)); assertThat(myBean.getFff(), is(2)); } /** * @throws Exception */ public void testSetValue_null() throws Exception { final MyBean myBean = new MyBean();
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 11K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java
RequirementMatcher matcher = provides.get(key); if (matcher == null) { getLog().debug("Toolchain {} is missing required property: {}", this, key); return false; } if (!matcher.matches(requirement.getValue())) { getLog().debug("Toolchain {} doesn't match required property: {}", this, key); return false; } }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Feb 12 13:13:28 GMT 2025 - 4.8K bytes - Click Count (0) -
src/test/java/jcifs/context/BaseContextTest.java
} @Test @DisplayName("getDfs should return initialized DFS resolver") void testGetDfs() { // When DfsResolver dfs = context.getDfs(); // Then assertNotNull(dfs, "DFS resolver should not be null"); assertSame(dfs, context.getDfs(), "Should return same instance on multiple calls"); } @TestCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 15.1K bytes - Click Count (0) -
src/test/java/jcifs/CIFSContextTest.java
// Given DfsResolver mockResolver = mock(DfsResolver.class); when(mockContext.getDfs()).thenReturn(mockResolver); // When DfsResolver resolver = mockContext.getDfs(); // Then assertEquals(mockResolver, resolver); verify(mockContext).getDfs(); } @Test @DisplayName("Should get SidResolver") void testGetSIDResolver() {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java
public void action() { FileTree kotlinDslExtensionsJar = getArchives().zipTree(getKotlinDslExtensionsJar()); getFs().sync(spec -> { spec.from(kotlinDslExtensionsJar, zip -> zip.include("**/*.kt")); spec.into(getGeneratedSources()); }); getFs().sync(spec -> { spec.from(kotlinDslExtensionsJar, zip -> zip.include("**/*.class")); spec.into(getGeneratedClasses());
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Sun Mar 19 17:15:23 GMT 2023 - 3.9K bytes - Click Count (0) -
impl/maven-core/pom.xml
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Nov 26 10:37:56 GMT 2025 - 16.9K bytes - Click Count (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
return newContext; } @Override public Configuration getConfig() { return this.delegate.getConfig(); } @Override public DfsResolver getDfs() { return this.delegate.getDfs(); } @Override public Credentials getCredentials() { return this.delegate.getCredentials(); } @OverrideCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.9K bytes - Click Count (0) -
src/main/java/jcifs/context/BaseContext.java
*/ @Override public Configuration getConfig() { return this.config; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getDfs() */ @Override public DfsResolver getDfs() { return this.dfs; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getNameServiceClient() */ @OverrideCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/log/JclLoggerAdapter.java
* Creates a new instance of JclLoggerAdapter. * * @param name the logger name */ public JclLoggerAdapter(final Class<?> clazz) { sourceClass = clazz.getName(); logger = LogFactory.getLog(clazz); } @Override public boolean isFatalEnabled() { return logger.isFatalEnabled(); } @Override public void fatal(final String message) { logger.fatal(message);Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 2.7K bytes - Click Count (0)