Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 241 for livez (0.31 sec)

  1. platforms/native/tooling-native/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core-api"))
        api(project(":core"))
        api(project(":ide")) {
            because("To pick up various builders (which should live somewhere else)")
            api(project(":tooling-api"))
        }
    
        implementation(projects.baseServices)
        implementation(project(":file-collections"))
        implementation(project(":language-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:40:41 UTC 2024
    - 894 bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    	// mark all live revisions
    	live := map[string]bool{}
    	if current != nil {
    		live[current.Name] = true
    	}
    	if update != nil {
    		live[update.Name] = true
    	}
    	for i := range pods {
    		live[getPodRevision(pods[i])] = true
    	}
    	// collect live revisions and historic revisions
    	for i := range revisions {
    		if !live[revisions[i].Name] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[find_all_daemons]]
    == Find Daemons
    
    If you have installed the Java Development Kit (JDK), you can view live daemons with the `jps` command.
    
    ----
    $ jps
    ----
    ----
    33920 Jps
    27171 GradleDaemon
    22792
    ----
    
    Live Daemons appear under the name `GradleDaemon`.
    Because this command uses the JDK, you can view Daemons running any version of Gradle.
    
    [[enable_deamon]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. subprojects/build-events/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. docs/fr/docs/advanced/index.md

    !!! note "Remarque"
        Les sections de ce chapitre ne sont **pas nécessairement "avancées"**.
    
        Et il est possible que pour votre cas d'utilisation, la solution se trouve dans l'un d'entre eux.
    
    ## Lisez d'abord le didacticiel
    
    Vous pouvez utiliser la plupart des fonctionnalités de **FastAPI** grâce aux connaissances du [Tutoriel - Guide de l'utilisateur](../tutorial/index.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

        T getOrElse(T defaultValue);
    
        /**
         * Returns a new {@link Provider} whose value is the value of this provider transformed using the given function.
         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries the original (this) provider
         * and applies the transformation to the result. Whenever the original provider has no value, the new provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                    fieldPath: spec.serviceAccountName
              - name: KUBECONFIG
                value: /var/run/secrets/remote/config
              # If you explicitly told us where ztunnel lives, use that.
              # Otherwise, assume it lives in our namespace
              # Also, check for an explicit ENV override (legacy approach) and prefer that
              # if present
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// Look for a Pod using pvc in the Informer's cache. If one is found the
    	// correct decision to keep pvc is taken without doing an expensive live
    	// list.
    	logger := klog.FromContext(ctx)
    	if inUse, err := c.askInformer(logger, pvc); err != nil {
    		// No need to return because a live list will follow.
    		logger.Error(err, "")
    	} else if inUse {
    		return true, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The following source tree contains Java and Kotlin source files. Java source files live in `src/main/java`, whereas Kotlin source files live in `src/main/kotlin`.
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    .
    ├── build.gradle.kts
    └── src
        └── main
            ├── java
            │   └── HelloWorld.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                    // build session is cancelled, we can't guarantee that all worker daemons are in a safe state, so the cancellation
                    // handler will stop any long-lived worker daemons.  If a worker is not used during this session (i.e. this method
                    // is never called) the cancellation handler will not stop daemons on a cancellation (as there is no danger of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top