Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 843 for slop (0.04 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

                }
            }
    
            then:
            instant.action1Done > instant.action2Done
        }
    
        def "can stop multiple times"() {
            when:
            lifecycle.stop()
            lifecycle.stop()
            lifecycle.requestStop()
            lifecycle.requestStop()
            lifecycle.stop()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[sec:stopping_an_existing_daemon]]
    == Stop Daemon
    
    It can be helpful to stop the Daemon when troubleshooting or debugging a failure.
    
    Daemons automatically stop given any of the following conditions:
    
    * Available system memory is low
    * Daemon has been idle for 3 hours
    
    To stop running Daemon processes, use the following command:
    
    ----
    $ gradle --stop
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/kube/multicluster/secretcontroller.go

    			kubeConfigSha := sha256.Sum256(kubeConfig)
    			if bytes.Equal(kubeConfigSha[:], prev.kubeConfigSha[:]) {
    				logger.Infof("skipping update (kubeconfig are identical)")
    				continue
    			}
    			// stop previous remote cluster
    			prev.Stop()
    		} else if c.cs.Contains(cluster.ID(clusterID)) {
    			// if the cluster has been registered before by another secret, ignore the new one.
    			logger.Warnf("cluster has already been registered")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/log/slog/doc.go

    a global LevelVar:
    
    	var programLevel = new(slog.LevelVar) // Info by default
    
    Then use the LevelVar to construct a handler, and make it the default:
    
    	h := slog.NewJSONHandler(os.Stderr, &slog.HandlerOptions{Level: programLevel})
    	slog.SetDefault(slog.New(h))
    
    Now the program can change its logging level with a single statement:
    
    	programLevel.Set(slog.LevelDebug)
    
    # Groups
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    		return w
    	}
    
    	allEventsWatcher := createWatch(storage.Everything)
    	defer allEventsWatcher.Stop()
    	fooEventsWatcher := createWatch(fooPredicate)
    	defer fooEventsWatcher.Stop()
    	barEventsWatcher := createWatch(barPredicate)
    	defer barEventsWatcher.Stop()
    
    	makePod := func(labels map[string]string, rv string) *examplev1.Pod {
    		return &examplev1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. src/internal/coverage/pkid.go

    //    registered list:
    //    slot: 0 path='internal/cpu'  hard-coded id: 1
    //    slot: 1 path='internal/goarch'  hard-coded id: 2
    //    slot: 2 path='internal/runtime/atomic'  hard-coded id: 3
    //    slot: 3 path='internal/goos'
    //    slot: 4 path='runtime/internal/sys'  hard-coded id: 5
    //    slot: 5 path='internal/abi'  hard-coded id: 4
    //    slot: 6 path='runtime/internal/math'  hard-coded id: 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/UnicastMessagingIntegrationTest.groovy

            thread.blockUntil.received
            server.stop()
            client.stop()
    
            then:
            1 * service.doStuff("1")
            1 * service.doStuff("2")
            1 * service.doStuff("3")
            1 * service.doStuff("4") >> { instant.received }
    
            cleanup:
            client?.stop()
            server?.stop()
        }
    
        def "client can send messages to server"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     *     It is possible to use this service even at configuration time. However, as the
     *     returned value is used to check the configuration cache, the {@link #obtain()} method will
     *     be called during each build. Calling slow commands here will slow things down.</li>
     * </ul>
     *
     * <p>
     * A value source implementation will most likely take parameters. To do this create a
     * subtype of {@link ValueSourceParameters} and declare this type as the type parameter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/controller_test.go

    		assert.NoError(t, c.OnConnect(makeConn(p, time.Now())))
    		checkNoEntryOrFail(t, store, wgA, p)
    	})
    }
    
    func TestUpdateHealthCondition(t *testing.T) {
    	stop := test.NewStop(t)
    	ig, ig2, store := setup(t)
    	go ig.Run(stop)
    	go ig2.Run(stop)
    	p := fakeProxy("1.2.3.4", wgA, "litNw", "sa-a")
    	p.XdsNode = fakeNode("reg1", "zone1", "subzone1")
    	ig.OnConnect(makeConn(p, time.Now()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  10. src/sync/poolqueue.go

    		// reading the value to take back ownership of this
    		// slot.
    		head--
    		ptrs2 := d.pack(head, tail)
    		if d.headTail.CompareAndSwap(ptrs, ptrs2) {
    			// We successfully took back slot.
    			slot = &d.vals[head&uint32(len(d.vals)-1)]
    			break
    		}
    	}
    
    	val := *(*any)(unsafe.Pointer(slot))
    	if val == dequeueNil(nil) {
    		val = nil
    	}
    	// Zero the slot. Unlike popTail, this isn't racing with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top