Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,310 for nature (0.14 sec)

  1. cmd/kubeadm/app/util/dryrun/dryrun.go

    		}
    	} else {
    		fmt.Printf("[dryrun] Wrote certificates and kubeconfig files to the %q directory\n", manifestDir)
    	}
    
    	fmt.Println("[dryrun] The certificates or kubeconfig files would not be printed due to their sensitive nature")
    	fmt.Printf("[dryrun] Please examine the %q directory for details about what would be written\n", manifestDir)
    
    	// Print kubelet config manifests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    _Internal_ features may evolve into public features.
    
    [[sec:incubating_state]]
    == 2. Incubating
    
    Features are introduced in the _incubating_ state to allow real-world feedback to be incorporated into the feature before making it public.
    It also gives users willing to test potential future changes early access.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       *
       * <p>It is important to note that the primary purpose of the proxy object is to return control to
       * the caller when the timeout elapses; aborting the target method call is of secondary concern.
       * The particular nature and strength of the guarantees made by the proxy is
       * implementation-dependent. However, it is important that each of the methods on the target
       * object behaves appropriately when its thread is interrupted.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    		// while blocked.
    		//
    		// TODO(adonovan): consider how to report such
    		// situations. Reporting a goroutine in [sleep] or
    		// [select] state could be quite confusing without
    		// further information about the nature of the crash,
    		// as the problem is not local to the code location.
    		//
    		// For now, we keep count of this situation so that we
    		// can access whether it needs a more involved solution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_setup.adoc

    dedicated `publishMyLibraryPublicationToMyRepoRepository` task that does just that. Its name is based on the template `publish__PubName__PublicationTo__RepoName__Repository`. See the appropriate publishing plugin's documentation for more details on the nature of this task and any other tasks that may be available to you.
    
    You can either execute the individual publishing tasks directly, or you can execute `publish`, which will run all the available publishing tasks. In this example, `publish`...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    The purpose of running most builds though is to process some new changes.
    The structure of the software being built (how many modules are there, how independent are its parts etc.), and the nature of the changes themselves ("big refactor in the core of the system" vs. "small change to a unit test" etc.) strongly influence the performance gains delivered by the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. releasenotes/notes/native-stats.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Updated** Telemetry API uses a new native extension for Prometheus stats
      instead of the Wasm-based extension. This improves CPU overhead and memory
      usage of the feature. Custom dimensions no longer require regex and bootstrap
      annotations. If customizations use CEL expressions with Wasm attributes, they
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 16:00:46 UTC 2022
    - 420 bytes
    - Viewed (0)
  8. releasenotes/notes/agent-dns-capture.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - 26826
    releaseNotes:
    - |
      **Added** Experimental DNS resolution in the Istio agent to better support use cases like service entries
      with TCP services without VIPs, multicluster DNS resolution, and DNS resolution of Kubernetes services
      from VM sidecars. This feature is disabled by default and can be enabled by setting the following in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 08 04:32:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/future.kt

     */
    internal
    fun <T> future(context: CoroutineContext = EmptyCoroutineContext, computation: suspend () -> T): Future<T> =
        FutureContinuation<T>(context).also { k ->
            computation.startCoroutine(completion = k)
        }
    
    
    private
    class FutureContinuation<T>(override val context: CoroutineContext) : Future<T>, Continuation<T> {
    
        private
        var result: Result<T>? = null
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/features/Feature.java

     *
     * @param <T> The interface whose features are to be enumerated.
     * @author George van den Driessche
     */
    @GwtCompatible
    public interface Feature<T> {
      /** Returns the set of features that are implied by this feature. */
      Set<Feature<? super T>> getImpliedFeatures();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.1K bytes
    - Viewed (0)
Back to top