Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 336 for warns (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                                ArtifactUtils.key(plugin.getGroupId(), plugin.getArtifactId(), plugin.getVersion());
    
                        if (projectsMap.containsKey(pluginKey)) {
                            LOGGER.warn(
                                    "'{}' uses '{}' as extension which is not possible within the same reactor build. "
                                            + "This plugin was pulled from the local repository!",
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. internal/logger/console.go

    	i.pretty(msg, args...)
    }
    
    func (i warningMsg) pretty(msg string, args ...interface{}) {
    	if msg == "" {
    		fmt.Fprintln(Output, args...)
    	} else {
    		fmt.Fprintf(Output, `WARN: `+msg, args...)
    	}
    }
    
    // Warning :
    func Warning(msg string, data ...interface{}) {
    	if DisableLog {
    		return
    	}
    	consoleLog(warningMessage, msg, data...)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 20:51:54 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DfsImpl.java

                        trans.ensureConnected();
                        refServerName = trans.getRemoteHostName();
                    }
                    catch ( IOException e ) {
                        log.warn("Failed to connect to domain controller", e);
                    }
                    dr = getReferral(tf, trans, domain, domain, refServerName, root, null);
                }
            }
    
            if ( log.isTraceEnabled() ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

                try (InputStream inputStream = form.protwordsFile.getInputStream()) {
                    file.update(inputStream);
                } catch (final IOException e) {
                    logger.warn("Failed to process a request.", e);
                    throwValidationError(messages -> messages.addErrorsFailedToUploadProtwordsFile(GLOBAL),
                            () -> redirectWith(getClass(), moreUrl("uploadpage/" + form.dictId)));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

              Thread.interrupted() // Temporarily clear the interrupted state.
              interrupted = true
            } catch (e: IOException) {
              Platform.get().log("Failed to read public suffix list", Platform.WARN, e)
              return
            }
          }
        } finally {
          if (interrupted) {
            Thread.currentThread().interrupt() // Retain interrupted status.
          }
        }
      }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            context.rootDirectory = getRootDirectory(context);
    
            // options
            List<O> parsedOptions = parseCliOptions(context);
    
            // warn about deprecated options
            PrintWriter printWriter = new PrintWriter(parserRequest.out() != null ? parserRequest.out() : System.out, true);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                    try {
                        list.add(new LabelTypePattern(labelType.getValue(), includedPaths, excludedPaths));
                    } catch (final Exception e) {
                        logger.warn("Failed to create a matching pattern of a label: {}, includedPaths:{}, excludedPaths:{}",
                                labelType.getValue(), includedPaths, excludedPaths, e);
                    }
                }
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                            }
                            return;
                        }
                    } catch (final NumberFormatException e) {
                        logger.warn("Invalid role info: {}", rolesStr, e);
                        return;
                    }
                }
                if (values.length > 1) {
                    final String[] roles = values[1].split(roleSeparator);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jul 25 01:48:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

            if ( ( msg.getFlags2() & SmbConstants.FLAGS2_SECURITY_SIGNATURES ) == 0 ) {
                // signature requirements need to be checked somewhere else
                log.warn("Expected signed response, but is not signed");
                return false;
            }
    
            update(this.macSigningKey, 0, this.macSigningKey.length);
            int index = offset;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  10. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

            }
        }
    
        @Override
        public void mojoSkipped(ExecutionEvent event) {
            if (logger.isWarnEnabled()) {
                init();
                logger.warn(
                        "Goal '{}' requires online mode for execution but Maven is currently offline, skipping",
                        event.getMojoExecution().getGoal());
            }
        }
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top