Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 389 for live1 (0.05 sec)

  1. 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)
  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. android/guava/src/com/google/common/graph/Network.java

      Set<N> nodes();
    
      /** Returns all edges in this network, in the order specified by {@link #edgeOrder()}. */
      Set<E> edges();
    
      /**
       * Returns a live view of this network as a {@link Graph}. The resulting {@link Graph} will have
       * an edge connecting node A to node B if this {@link Network} has an edge connecting A to B.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers_test.go

    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		f.Reset()
    		live := f.Live()
    		accessor, err := meta.Accessor(live)
    		if err != nil {
    			t.Fatalf("%v: couldn't get accessor: %v", tc.name, err)
    		}
    		accessor.SetManagedFields(tc.input)
    		if err := f.Update(live, "no-op-update"); err != nil {
    			t.Fatalf("%v: failed to do no-op update to object: %v", tc.name, err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. src/debug/dwarf/line_test.go

    package dwarf_test
    
    import (
    	. "debug/dwarf"
    	"io"
    	"strings"
    	"testing"
    )
    
    var (
    	file1C = &LineFile{Name: "/home/austin/go.dev/src/debug/dwarf/testdata/line1.c"}
    	file1H = &LineFile{Name: "/home/austin/go.dev/src/debug/dwarf/testdata/line1.h"}
    	file2C = &LineFile{Name: "/home/austin/go.dev/src/debug/dwarf/testdata/line2.c"}
    )
    
    func TestLineELFGCC(t *testing.T) {
    	// Generated by:
    	//   # gcc --version | head -n1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K 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. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

            when:
            deps = dependencies.getDependencies(Stub(Task))
    
            then:
            visited == 2
            deps as List == [dependency]
        }
    
        def "collection dependencies are live"() {
            def task = Stub(Task)
            def dependency1 = Stub(Task)
            def dependency2 = Stub(Task)
            def dependencySource = Mock(TaskDependencyContainer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

            calledFor == []
    
            when:
            component1.remove("b")
            component2.remove("d")
    
            then:
            calledFor == ["b", "d"]
        }
    
        def "filtered collection is live"() {
            given:
            def component1 = collection("a", "j")
            def component2 = collection("b", "k")
            def composite = composite(component1, component2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/helper.go

    	// by the caller, as it knows more information about the pod,
    	// which is needed to determine log size.
    	if rootFs != nil {
    		// The container logs live on the node rootfs device
    		result.Logs = buildLogsStats(cstat, rootFs)
    	}
    
    	if imageFs != nil {
    		// The container rootFs lives on the imageFs devices (which may not be the node root fs)
    		result.Rootfs = buildRootfsStats(cstat, imageFs)
    	}
    
    	cfs := cstat.Filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. docs/fr/docs/contributing.md

    !!! tip
        La langue principale ("officielle") est l'anglais, qui se trouve à l'adresse "docs/en/".
    
    Maintenant, lancez le serveur en live pour les documents en espagnol :
    
    <div class="termy">
    
    ```console
    // Use the command "live" and pass the language code as a CLI argument
    $ python ./scripts/docs.py live es
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top