Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 466 for warning2 (0.07 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectWarnings.java

         * @param testName The testName to inject
         */
        public InjectWarnings(List<String> warnings, String testName) {
            this(false, warnings, testName);
        }
    
        /**
         * @param isRegex true is should inject the regex variant of warning
         * @param warnings The warnings to inject
         * @param testName The testName to inject
         */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/RemoveWarnings.java

        private final Set<String> warnings;
        private String testName;
    
        /**
         * @param warnings The allowed warnings to inject
         */
        public RemoveWarnings(Set<String> warnings) {
            this.warnings = warnings;
        }
        /**
         * @param warnings The allowed warnings to inject
         * @param testName The testName to inject
         */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 15 08:50:42 GMT 2021
    - 2.9K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/eclipse.settings/org.eclipse.jdt.core.prefs

    # org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=warning
    # org.eclipse.jdt.core.compiler.problem.nullReference=warning
    # org.eclipse.jdt.core.compiler.problem.nullSpecViolation=warning
    # org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
    # org.eclipse.jdt.core.compiler.problem.potentialNullReference=warning
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 16:53:28 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  4. compat/maven-model-builder/src/test/java/org/apache/maven/model/building/SimpleProblemCollector.java

                    if (!errors.contains(req.getMessage())) {
                        errors.add(req.getMessage());
                    }
                    break;
                case WARNING:
                    if (!warnings.contains(req.getMessage())) {
                        warnings.add(req.getMessage());
                    }
                    break;
                default:
                    throw new IllegalArgumentException("Unknown severity: " + req.getSeverity());
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectAllowedWarnings.java

        /**
         * @param allowedWarnings The allowed warnings to inject
         */
        public InjectAllowedWarnings(List<String> allowedWarnings) {
            this(false, allowedWarnings);
        }
    
        /**
         * @param isRegex true if should inject the regex variant of allowed warnings
         * @param allowedWarnings The allowed warnings to inject
         */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 15 08:50:42 GMT 2021
    - 3.3K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

        val errors: List<ReportMessage>,
        val warnings: List<ReportMessage>,
        val information: List<ReportMessage>,
        val accepted: List<ReportMessage>
    ) {
    
        val isEmpty: Boolean
            get() = errors.isEmpty() && warnings.isEmpty() && information.isEmpty()
    
        fun toText() =
            StringBuilder("Binary compatibility\n").apply {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jun 28 08:29:28 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  7. architecture/standards/0008-use-nullaway.md

    Our codebase uses `null` extensively to represent an absence of value or optionality of the argument.
    We utilize nullness annotations in Java code and somewhat rely on IDE warnings to guide us.
    However, the Java code we have is not fully annotated, which causes several consequences:
    * IDE warnings can be misleading
    * Redundant null checks may increase binary size, hurt performance, and increase cognitive load for readers
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java

        public void test_securitySettings_allowUnsecureBasic() throws Exception {
            // Verify the ALLOW_UNSEC_BASIC setting is documented with security warnings
            SpnegoAuthenticator authenticator = new SpnegoAuthenticator();
            assertNotNull(authenticator);
    
            // The security warning comments should guide users to disable this in production
            // This is a compile-time check that the code structure is correct
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  9. cmd/server-rlimit.go

    		// Could not probe the kernel version
    		return false
    	}
    
    	if currentKernel == 0 {
    		// We could not get any valid value return false
    		return false
    	}
    
    	// legacy linux indicator for printing warnings
    	// about older Linux kernels and Go runtime.
    	return currentKernel < kernel.Version(4, 0, 0)
    }
    
    func setMaxResources(ctx serverCtxt) (err error) {
    	// Set the Go runtime max threads threshold to 90% of kernel setting.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Jul 02 15:09:36 GMT 2024
    - 2.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

     *
     * <p>This class ensures that the temporary file is deleted if it is not needed.
     * It uses a logger to log warnings if there are issues deleting the temporary file.</p>
     *
     * <p>Fields:</p>
     * <ul>
     *   <li>{@code logger} - Logger instance for logging warnings.</li>
     *   <li>{@code PREFIX} - Prefix for the temporary file name.</li>
     *   <li>{@code SUFFIX} - Suffix for the temporary file name.</li>
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Thu Nov 20 13:34:13 GMT 2025
    - 3.9K bytes
    - Click Count (0)
Back to Top