Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for smoothly (0.45 sec)

  1. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

       * spread over each second. When the incoming request rate exceeds {@code permitsPerSecond} the
       * rate limiter will release one permit every {@code (1.0 / permitsPerSecond)} seconds. When the
       * rate limiter is unused, bursts of up to {@code permitsPerSecond} permits will be allowed, with
       * subsequent requests being smoothly limited at the stable rate of {@code permitsPerSecond}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/RateLimiter.java

       * spread over each second. When the incoming request rate exceeds {@code permitsPerSecond} the
       * rate limiter will release one permit every {@code (1.0 / permitsPerSecond)} seconds. When the
       * rate limiter is unused, bursts of up to {@code permitsPerSecond} permits will be allowed, with
       * subsequent requests being smoothly limited at the stable rate of {@code permitsPerSecond}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/upgrade.go

    		allowRCUpgrades:           false,
    		printConfig:               false,
    		out:                       out,
    	}
    
    	cmd := &cobra.Command{
    		Use:   "upgrade",
    		Short: "Upgrade your cluster smoothly to a newer version with this command",
    		Run:   cmdutil.SubCmdRun(),
    	}
    
    	cmd.AddCommand(newCmdApply(flags))
    	cmd.AddCommand(newCmdPlan(flags))
    	cmd.AddCommand(newCmdDiff(out))
    	cmd.AddCommand(newCmdNode(out))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:18:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    Your build script may contain statements like: `"ant clean compile".execute()`.footnote:[In Groovy you can execute Strings.]
    
    Gradle's Ant integration allows you to migrate your build from Ant to Gradle smoothly:
    
    1. Begin by importing your existing Ant build.
    2. Then, transition your dependency declarations from the Ant script to your build file.
    3. Finally, move your tasks to your build file or replace them with Gradle's plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation.go

    // update.
    func ValidateClusterTrustBundleUpdate(newBundle, oldBundle *certificates.ClusterTrustBundle) field.ErrorList {
    	// If the caller isn't changing the TrustBundle field, don't parse it.
    	// This helps smoothly handle changes in Go's PEM or X.509 parsing
    	// libraries.
    	opts := ValidateClusterTrustBundleOptions{}
    	if newBundle.Spec.TrustBundle == oldBundle.Spec.TrustBundle {
    		opts.SuppressBundleParsing = true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                        mapping.computeIfAbsent(element) { _ ->
                            unmappedCount -= 1
                            // Here we intentionally use the 'Optional' wrapper to make 'computeIfAbsent' work smoothly
                            Optional.ofNullable(computeTarget(element))
                        }
                    }
    
                    if (unmappedCount > 0) {
                        element.acceptChildren(this)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emit.go

    // temp file will be then closed and renamed (from 'mftmp' to
    // 'mfname'), so as to insure that the meta-data file is created
    // atomically; we want this so that things work smoothly in cases
    // where there are several instances of a given instrumented program
    // all terminating at the same time and trying to create meta-data
    // files simultaneously.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    Quoting the Kotlin reference documentation:
    
    > Kotlin is designed with Java Interoperability in mind. Existing Java code can be called from Kotlin in a natural way, and Kotlin code can be used from Java rather smoothly as well.
    
    Both link:{kotlin-reference}java-interop.html[calling Java from Kotlin] and link:{kotlin-reference}java-to-kotlin-interop.html[calling Kotlin from Java] are very well covered in the Kotlin reference documentation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    	// kicks off coverage specifies a local import path (e.g. "go test
    	// -cover ./thispackage"), the tool will capture full pathnames
    	// for source files instead of relative paths, which tend to work
    	// more smoothly for "go tool cover -html". See also issue #56433
    	// for more details.
    	if pkgconfig.Local {
    		filename = f.name
    	}
    
    	// Hand off function to meta-data builder.
    	fd := coverage.FuncDesc{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/runtime/mstats.go

    	// and unreachable objects are freed. Sweeping occurs
    	// incrementally between GC cycles, so these two processes
    	// occur simultaneously, and as a result HeapAlloc tends to
    	// change smoothly (in contrast with the sawtooth that is
    	// typical of stop-the-world garbage collectors).
    	HeapAlloc uint64
    
    	// HeapSys is bytes of heap memory obtained from the OS.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top