Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 2,290 for Warningf (0.38 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

         */
        VERBOSE,
        /**
         * -quiet
         *
         * Shuts off non-error and non-warning messages, leaving only the warnings and errors appear,
         * making them easier to view. Also suppresses the version string.
         */
        QUIET
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		if len(results) != 0 {
    			warnings = append(warnings, v1.ExpressionWarning{
    				FieldRef: fieldRef.Index(i).Child("expression").String(),
    				Warning:  results.String(),
    			})
    		}
    		// Note that MessageExpression is optional
    		if v.MessageExpression == "" {
    			continue
    		}
    		results = c.CheckExpression(ctx, v.MessageExpression)
    		if len(results) != 0 {
    			warnings = append(warnings, v1.ExpressionWarning{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. pkg/registry/discovery/endpointslice/strategy.go

    	return err
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (endpointSliceStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	eps := obj.(*discovery.EndpointSlice)
    	if eps == nil {
    		return nil
    	}
    	var warnings []string
    	warnings = append(warnings, warnOnDeprecatedAddressType(eps.AddressType)...)
    	return warnings
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

                return ResolvedCoordinates.create(resolved);
            }
    
            if (mappings.incompatibleModules.contains(key)) {
                // TODO: We should enhance this warning to list the conflicting dependencies.
                warnings.addIncompatible(String.format(
                    "Cannot determine variant coordinates for dependency '%s' since " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. 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.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    `-S` or `--full-stacktrace`::
    The full stacktraces are printed out. This option renders stacktraces for deprecation warnings.
    
    &lt;No stacktrace options&gt;::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

        // This shouldn't happen, returning an error instead of asserting so it
        // doesn't go unnoticed if it ever happens.
        target_op.emitError("no path to target op found, cannot emit warnings");
        return;
      }
    
      // Emit warnings for path.
      int node_idx = 0;
      for (auto iter = path.rbegin(); iter != path.rend(); ++iter) {
        Operation* op = *iter;
        std::string pos_str;
        if (node_idx == 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. 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)
Back to top