- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 250 for get_db (0.06 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java
import org.apache.maven.model.profile.ProfileActivationContext; /** * Determines profile activation based on the version of the current Java runtime. * * @see Activation#getJdk() * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Named("jdk-version") @Singleton @Deprecated(since = "4.0.0") public class JdkVersionProfileActivator implements ProfileActivator {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
dest.setBbb("bbb"); dest.setDdd("ddd"); BeanUtil.copyBeanToBean(src, dest); assertThat(dest.getAaa(), is("111")); assertThat(dest.getBbb(), is(nullValue())); assertThat(dest.getDdd(), is("ddd")); } /** * @throws Exception */ @Test public void testCopy_BeanToBean_ExcludeNull() throws Exception { final MyClass src = new MyClass();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 34.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java
activation.setActiveByDefault(profileActivation.isActiveByDefault()); activation.setJdk(profileActivation.getJdk()); org.apache.maven.profiles.ActivationProperty profileProp = profileActivation.getProperty(); if (profileProp != null) { ActivationProperty prop = new ActivationProperty(); prop.setName(profileProp.getName());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
*/ public static byte[] getNTHash ( String password ) { if ( password == null ) { throw new NullPointerException("Password parameter is required"); } MessageDigest md4 = Crypto.getMD4(); md4.update(Strings.getUNIBytes(password)); return md4.digest(); } /** * * @param password * @return the calculated hash */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
return null; } } /** * * {@inheritDoc} * * @see jcifs.DfsResolver#getDc(jcifs.CIFSContext, java.lang.String) */ @Override public SmbTransport getDc ( CIFSContext tf, String domain ) throws SmbAuthException { if ( tf.getConfig().isDfsDisabled() ) return null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecrypter.java
problems.add(new DefaultSettingsProblem( "Legacy/insecurely encrypted password detected for server " + server.getId(), Severity.WARNING, "server: " + server.getId(), -1, -1, null)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java
// currently processing the entry point - it should not have any entry incident edges res.getEntry().getMd().setWhy("This is a graph entry point. No links."); } else { // System.out.println("--->"+v.getMd().toDomainString() // +" has been terminated on this entry set\n-------------------\n" // +ins
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
public void store(final ElevateWord elevateWord) { final boolean isNew = elevateWord.getId() == null; final String[] labelTypeIds = elevateWord.getLabelTypeIds(); elevateWordBhv.insertOrUpdate(elevateWord, op -> { op.setRefreshPolicy(Constants.TRUE); }); final String elevateWordId = elevateWord.getId(); if (labelTypeIds != null) { if (isNew) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
logger.warn( "Duplicated lifecycle phase {}. Defined in {} but also in {}", phase, original.getId(), lifecycle.getId()); } } if (lifecycle.getDelegate() != null) { for (org.apache.maven.api.Lifecycle.Alias alias :
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0)