Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,682 for Warningf (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         *
         * If a configuration with this name already exists this method will <strong>overwrite</strong> its current usage to match what
         * would be set if the configuration needed to be created and emit an additional deprecation warning when doing this
         * <strong>IFF</strong> {@code verifyPrexisting} is set to {@code true}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

            System_Ext(editorDependencies, "Dependencies", "classpath, sourcepath, implicit imports")
            System_Ext(editorReportPanel, "Report Panel", "Displays warnings and errors on top of the editor UI")
            System_Ext(editorHints, "Inline Hints", "Displays warning and error hints inline in the editor UI")
        }
    
        System_Ext(ideKotlin, "IntelliJ Kotlin Plugin", "for IDEA or Android Studio")
    
        Rel(editor, ideKotlin, "Uses")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/kubeinject.go

    				fmt.Fprintln(c.ErrOrStderr())
    			}
    			for _, warning := range warnings {
    				fmt.Fprintln(c.ErrOrStderr(), warning)
    			}
    			return retval
    		},
    		PersistentPreRunE: func(c *cobra.Command, args []string) error {
    			// istioctl kube-inject is typically redirected to a .yaml file;
    			// the default for log messages should be stderr, not stdout
    			root := c.Root()
    			if root != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy.go

    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (podStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	newPod := obj.(*api.Pod)
    	var warnings []string
    	if msgs := utilvalidation.IsDNS1123Label(newPod.Name); len(msgs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. src/internal/coverage/pods/pods.go

    				fo := fileWithAnnotations{file: f, origin: idx, pid: pid}
    				v.elements = append(v.elements, fo)
    				mm[tag] = v
    			} else {
    				if warn {
    					warning("skipping orphaned counter file: %s", f)
    				}
    			}
    		}
    	}
    	if len(mm) == 0 {
    		if warn {
    			warning("no coverage data files found")
    		}
    		return nil
    	}
    	pods := make([]Pod, 0, len(mm))
    	for _, p := range mm {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/config/validation/envoyfilter/envoyfilter.go

    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/wellknown"
    )
    
    type (
    	Warning    = validation.Warning
    	Validation = validation.Validation
    )
    
    // ValidateEnvoyFilter checks envoy filter config supplied by user
    var ValidateEnvoyFilter = validation.RegisterValidateFunc("ValidateEnvoyFilter",
    	func(cfg config.Config) (Warning, error) {
    		errs := Validation{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExpectedDeprecationWarning.java

    import com.google.common.base.Preconditions;
    
    import java.util.List;
    import java.util.regex.Pattern;
    
    /**
     * Represents a deprecation warning message that is expected to be emitted by a test.
     * <p>
     * This class exists to support the detection of deprecation warnings that span multiple lines,
     * which may include the keyword "{@code deprecated}" multiple times.
     */
    public abstract class ExpectedDeprecationWarning {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

                        myconf project(":b")
                    }
                }
            """
            settingsFile << """
                include 'a', 'b'
            """
            // Avoid missing project directory deprecation warnings
            testDirectory.file("a").mkdirs()
            testDirectory.file("b").mkdirs()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. hack/verify-shellcheck.sh

    if [ $res -eq 0 ]; then
      echo 'Congratulations! All shell files are passing lint :-)'
    else
      {
        echo
        echo 'Please review the above warnings. You can test via "./hack/verify-shellcheck.sh"'
        echo 'If the above warnings do not make sense, you can exempt this warning with a comment'
        echo ' (if your reviewer is okay with it).'
        echo 'In general please prefer to fix the error, we have already disabled specific lints'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                assertThat("Has errors", richReport.errors.map { it.message }, CoreMatchers.equalTo(errors.toList()))
            }
    
            fun assertHasWarnings(vararg warnings: String) {
                assertThat("Has warnings", richReport.warnings.map { it.message }, CoreMatchers.equalTo(warnings.toList()))
            }
    
            fun assertHasInformation(vararg information: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top