Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for Warningf (0.13 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    			// If they don't, the user will be warned and be presented with the command to label their namespace as ambient if they
    			// choose to do so.
    			//
    			// NOTE: This is a warning and not an error because the user may not intend to label their namespace as ambient.
    			//
    			// e.g. Users are handling ambient redirection per workload rather than at the namespace level.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                            // TODO: https://issues.apache.org/jira/browse/MNG-8004
                            problems.add(new ModelProblemCollectorRequest(
                                            ModelProblem.Severity.WARNING, ModelProblem.Version.V40)
                                    .setMessage("Ignored POM import for: " + toString(dependency) + " as already imported "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

                            // TODO: https://issues.apache.org/jira/browse/MNG-8004
                            problems.add(
                                    Severity.WARNING,
                                    Version.V40,
                                    "Ignored POM import for: " + toString(dependency) + " as already imported "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. configure.py

        curr_version = curr_version.split('bazel ')[1]
    
      curr_version_int = convert_version_to_int(curr_version)
    
      # Check if current bazel version can be detected properly.
      if not curr_version_int:
        print('WARNING: current bazel installation is not a release version.')
        return curr_version
    
      print('You have bazel %s installed.' % curr_version)
      return curr_version
    
    
    def set_cc_opt_flags(environ_cp):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

                return false;
            }
            try {
                return isJavaVersionCompatible(jdk, version);
            } catch (NumberFormatException e) {
                problems.add(
                        BuilderProblem.Severity.WARNING,
                        ModelProblem.Version.BASE,
                        "Failed to determine JDK activation for profile " + profile.getId() + " due invalid JDK version: '"
                                + version + "'",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

                return false;
            }
            try {
                return isJavaVersionCompatible(jdk, version);
            } catch (NumberFormatException e) {
                problems.add(new ModelProblemCollectorRequest(Severity.WARNING, Version.BASE)
                        .setMessage("Failed to determine JDK activation for profile " + profile.getId()
                                + " due invalid JDK version: '" + version + "'")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

         * Useful in testing.
         */
        val alwaysLogReportLinkAsWarning: Boolean = options.getInternalFlag("org.gradle.configuration-cache.internal.report-link-as-warning", false)
    
        val gradleProperties: Map<String, Any?>
            get() = startParameter.projectProperties
                .filterKeys { !Workarounds.isIgnoredStartParameterProperty(it) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>
                Marks this Mojo as being thread-safe, i.e. the Mojo safely supports concurrent execution during parallel
                builds. Mojos without this annotation will make Maven output a warning when used during a parallel build
                session.
                @since Maven 3.0.
              </description>
              <defaultValue>false</defaultValue>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listenertest/match.go

    						continue
    					}
    					found++
    					VerifyFilterChain(t, have, want)
    				}
    				if found == 0 {
    					t.Fatalf("No matching chain found for %+v", want)
    				}
    				if found > 1 {
    					t.Logf("warning: multiple matching chains found for %+v", want)
    				}
    			}
    		}
    	}
    }
    
    func VerifyFilterChain(t test.Failer, have *listener.FilterChain, want FilterChainTest) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

    import org.eclipse.aether.util.repository.SimpleArtifactDescriptorPolicy;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Assists in resolving the dependencies of a plugin. <strong>Warning:</strong> This is an internal utility class that
     * is only public for technical reasons, it is not part of the public API. In particular, this class can be changed or
     * deleted without prior notice.
     *
     * @since 3.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top