Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 123 for Warningf (0.33 sec)

  1. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    func autoConvert_v1beta2_LimitedPriorityLevelConfiguration_To_flowcontrol_LimitedPriorityLevelConfiguration(in *v1beta2.LimitedPriorityLevelConfiguration, out *flowcontrol.LimitedPriorityLevelConfiguration, s conversion.Scope) error {
    	// WARNING: in.AssuredConcurrencyShares requires manual conversion: does not exist in peer-type
    	if err := Convert_v1beta2_LimitResponse_To_flowcontrol_LimitResponse(&in.LimitResponse, &out.LimitResponse, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    		numExpectedReady:    maxCapacity - 1,
    		numExpectedNotReady: 0,
    		expectedAnnotation:  false,
    	}, {
    		name:                "annotation was set to warning previously, annotation removed at capacity",
    		startingAnnotation:  pointer.String("warning"),
    		numExisting:         maxCapacity,
    		numDesired:          maxCapacity,
    		numDesiredNotReady:  0,
    		numExpectedReady:    maxCapacity,
    		numExpectedNotReady: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

    # Writes a TODO with $Message to the console.
    function Log_Todo {
      param (
        [parameter(Mandatory=$true)] [string]$Message
      )
      Log-Output "TODO: ${Message}"
    }
    
    # Writes a not-implemented warning with $Message to the console and exits the
    # script.
    function Log_NotImplemented {
      param (
        [parameter(Mandatory=$true)] [string]$Message
      )
      Log-Output "Not implemented yet: ${Message}" -Fatal
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    	flag.BoolVar(&noClean, "no-clean", noClean, "print deprecation warning")
    
    	xflagparse(0)
    
    	if noClean {
    		xprintf("warning: --no-clean is deprecated and has no effect; use 'go install std cmd' instead\n")
    	}
    
    	// Don't build broken ports by default.
    	if broken[goos+"/"+goarch] && !force {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (!should_compile && device_type.type_string() == DEVICE_CPU &&
          global_jit_level_ > OptimizerOptions::OFF) {
        static absl::once_flag once;
        absl::call_once(once, [] {
          LOG(WARNING) << R"((One-time warning): Not using XLA:CPU for cluster.
    
    If you want XLA:CPU, do one of the following:
    
     - set the TF_XLA_FLAGS to include "--tf_xla_cpu_global_jit", or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        KaSimpleVariableAccess.Write(rhs)
                    )
                }
                is FirPropertyAccessExpression, is FirCallableReferenceAccess -> {
                    @Suppress("USELESS_IS_CHECK") // K2 warning suppression, TODO: KT-62472
                    require(fir is FirQualifiedAccessExpression)
                    when (unsubstitutedKtSignature.symbol) {
                        is KaVariableLikeSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    		// Already enabled.
    		return true
    	}
    	if initialized {
    		// Initialized, not enabled.
    		return false
    	}
    
    	// Keep in sync with Init. Init does extra validation and prints warnings or
    	// exits, so it can't call this function directly.
    	env := cfg.Getenv("GO111MODULE")
    	switch env {
    	case "on", "":
    		return true
    	case "auto":
    		break
    	default:
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Any getter not annotated with an input/output annotation is also flagged.
    These problems then fail the build or are turned into deprecation warnings when the task is executed.
    
    Tasks that have a validation warning are executed *without any optimizations*.
    Specifically, they never can be:
    
    * up-to-date,
    * loaded from or stored in the <<build_cache.adoc#build_cache,build cache>>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    buff.a("Message styles: ");
                    buff.trace("trace").a(' ');
                    buff.debug("debug").a(' ');
                    buff.info("info").a(' ');
                    buff.warning("warning").a(' ');
                    buff.error("error").a(' ');
                    buff.success("success").a(' ');
                    buff.failure("failure").a(' ');
                    buff.strong("strong").a(' ');
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top