- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 692 for get_name (0.13 sec)
-
guava/src/com/google/common/util/concurrent/Callables.java
private static boolean trySetName(String threadName, Thread currentThread) { /* * setName should usually succeed, but the security manager can prohibit it. Is there a way to * see if we have the modifyThread permission without catching an exception? */ try { currentThread.setName(threadName); return true; } catch (SecurityException e) { return false; } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 18:32:03 UTC 2023 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
protected String netName; protected int type; protected String remark; /** * */ public SmbShareInfo () {} /** * * @param netName * @param type * @param remark */ public SmbShareInfo ( String netName, int type, String remark ) { this.netName = netName; this.type = type;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Feb 17 09:30:57 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
if (!fessConfig.isLdapAdminEnabled(user.getName())) { return; } final Supplier<Hashtable<String, String>> adminEnv = this::createAdminEnv; final String userDN = fessConfig.getLdapAdminUserSecurityPrincipal(user.getName()); // attributes search(fessConfig.getLdapAdminUserBaseDn(), fessConfig.getLdapAdminUserFilter(user.getName()), null, adminEnv, result -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformer.java
/** * @author shinsuke * */ public abstract class AbstractTransformer implements Transformer { protected String name; public void setName(final String name) { this.name = name; } @Override public String getName() { return name; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1012 bytes - Viewed (0) -
guava-tests/test/com/google/common/net/InetAddressesTest.java
assertTrue(InetAddresses.isMaximum(address)); } public void testIncrementIPv4() throws UnknownHostException { InetAddress address_66_0 = InetAddress.getByName("172.24.66.0"); InetAddress address_66_255 = InetAddress.getByName("172.24.66.255"); InetAddress address_67_0 = InetAddress.getByName("172.24.67.0"); InetAddress address = address_66_0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 24 16:44:05 UTC 2024 - 35.3K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/java/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.java
public class IntegrationTestFixturesRule extends AbstractAstVisitorRule { @Override public String getName() { return "IntegrationTestFixtures"; } @Override public int getPriority() { return 1; } @Override public void setName(String name) { throw new UnsupportedOperationException(); } @Override
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/RequestHeader.java
private String value; public RequestHeader(final String name, final String value) { this.name = name; this.value = value; } public String getName() { return name; } public void setName(final String name) { this.name = name; } public String getValue() { return value; } public void setValue(final String value) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 1.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/sub/MogeBeanImpl.java
} /** * @param name */ public MogeBeanImpl(final String name) { this.name = name; } @Override public String getName() { return name; } @Override public void setName(final String name) { this.name = name; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
"no name with type 0x" + Hexdump.toHexString(addr.getNameType(), 2) + ( ( ( addr.getName().getScope() == null ) || ( addr.getName().getScope().isEmpty() ) ) ? " with no scope" : " with scope " + addr.getName().getScope() ) + " for host " + addr.getHostAddress()); } } /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/sub/MogeBean.java
*/ package org.codelibs.core.beans.impl.sub; /** * @author koichik */ public interface MogeBean { /** * @return String */ String getName(); /** * @param name */ void setName(String name);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 850 bytes - Viewed (0)