- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 336 for warns (0.03 sec)
-
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java
public static final String UPDATE_POLICY_INTERVAL = "interval"; public static final String CHECKSUM_POLICY_FAIL = "fail"; public static final String CHECKSUM_POLICY_WARN = "warn"; public static final String CHECKSUM_POLICY_IGNORE = "ignore"; public static final String DEFAULT_CHECKSUM_POLICY = CHECKSUM_POLICY_FAIL; private boolean enabled; private String updatePolicy;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* the client and may be necessary for proper operation. * <p> * This class should be used in favor of <tt>InetAddress</tt> to resolve * hostnames on LANs and WANs that support a mixture of NetBIOS/WINS and * DNS resolvable hosts. */ public class UniAddress implements Address { /** * Check whether a hostname is actually an ip address *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
} systemProperties.reload(propFile.getAbsolutePath()); propFile.deleteOnExit(); } catch (final Exception e) { logger.warn("Failed to create system properties file.", e); } } int totalCount = 0; int count = 1;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java
case FAILED: delegate.transferFailed(transferEvent); break; default: LOGGER.warn("Invalid TransferEvent.EventType={}; ignoring it", type); } } catch (TransferCancelledException e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
artifactId = p[1]; version = p[2]; goal = p[3]; } else { // invalid LOGGER.warn( "Ignored invalid goal specification '{}' from lifecycle mapping for phase {}", mojo.getGoal(), phase); continue;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.8K bytes - Viewed (0) -
fastapi/utils.py
new_field.populate_validators() # type: ignore[attr-defined] return new_field def generate_operation_id_for_path( *, name: str, path: str, method: str ) -> str: # pragma: nocover warnings.warn( "fastapi.utils.generate_operation_id_for_path() was deprecated, " "it is not used internally, and will be removed soon", DeprecationWarning, stacklevel=2, )
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 31 23:46:03 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
/** * {@inheritDoc} * * @see java.lang.Object#finalize() */ @Override protected void finalize () throws Throwable { if ( this.usageCount.get() != 0 ) { log.warn("Tree handle was not properly released " + this.resourceLoc.getURL()); } } /** * {@inheritDoc} * * @see jcifs.SmbTreeHandle#getRemoteHostName() */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
} final TimeoutTask timeoutTask = createTimeoutTask(); try { executePython(); } catch (final Exception e) { logger.warn("Failed to run python command.", e); resultBuf.append(e.getMessage()).append("\n"); } finally { if (timeoutTask != null && !timeoutTask.isCanceled()) { timeoutTask.cancel();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.8K bytes - Viewed (0)