Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for bursty (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

    import org.gradle.launcher.daemon.server.api.DaemonStateControl.State
    import org.gradle.util.GradleVersion
    
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Busy
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Canceled
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Idle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/validation/validation.go

    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(config.Burst), fldPath.Child("Burst"))...)
    	return allErrs
    }
    
    func validateHostPort(input string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	hostIP, port, err := net.SplitHostPort(input)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

    import org.gradle.launcher.daemon.server.api.DaemonStateControl;
    
    import java.util.List;
    import java.util.UUID;
    
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Busy;
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Canceled;
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Idle;
    
    public class NotifyDaemonAboutChangedPathsClient {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

            when:
            registry.remove(address)
    
            then:
            registry.all.empty
        }
    
        def "mark busy ignores entry that has been removed"() {
            given:
            def address = address()
    
            when:
            registry.markState(address, Busy)
    
            then:
            registry.all.empty
        }
    
        def "mark idle ignores entry that has been removed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server.go

    	fs.StringVar(&o.config.ClientConnection.ContentType, "kube-api-content-type", o.config.ClientConnection.ContentType, "Content type of requests sent to apiserver.")
    	fs.Int32Var(&o.config.ClientConnection.Burst, "kube-api-burst", o.config.ClientConnection.Burst, "Burst to use while talking with kubernetes apiserver")
    	fs.Float32Var(&o.config.ClientConnection.QPS, "kube-api-qps", o.config.ClientConnection.QPS, "QPS to use while talking with kubernetes apiserver")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/stress-start-stop.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a many interesting cases (network, syscalls, a little GC, busy goroutines,
    // blocked goroutines, LockOSThread, pipes, and GOMAXPROCS).
    
    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"io"
    	"log"
    	"net"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"sync"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/kube/multicluster/secretcontroller_test.go

    	fakeRestConfig := &rest.Config{}
    	client := kube.NewFakeClient()
    	stopCh := test.NewStop(t)
    	c := NewController(client, secretNamespace, "", mesh.NewFixedWatcher(nil), func(cfg *rest.Config) {
    		cfg.QPS = expectedQPS
    		cfg.Burst = expectedBurst
    	})
    	c.ClientBuilder = func(kubeConfig []byte, c cluster.ID, configOverrides ...func(*rest.Config)) (kube.Client, error) {
    		for _, override := range configOverrides {
    			override(fakeRestConfig)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            Runnable command = Mock()
    
            when:
            coordinator.runCommand(command, "some command")
    
            then:
            1 * command.run() >> {
                assert busy
                coordinator.requestStop("REASON")
                assert notStopped
                assert coordinator.willRefuseNewCommands
            }
    
            and:
            stopped
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonUnavailable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Returned when the daemon is busy running a different command.
     */
    public class DaemonUnavailable extends Message {
        private final String reason;
    
        public DaemonUnavailable(String reason) {
            this.reason = reason;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 965 bytes
    - Viewed (0)
  10. pilot/cmd/pilot-discovery/app/cmd.go

    		"Maximum QPS when communicating with the kubernetes API")
    
    	c.PersistentFlags().IntVar(&serverArgs.RegistryOptions.KubeOptions.KubernetesAPIBurst, "kubernetesApiBurst", 160,
    		"Maximum burst for throttle when communicating with the kubernetes API")
    
    	// Attach the Istio logging options to the command.
    	loggingOptions.AttachCobraFlags(c)
    
    	// Attach the Istio Ctrlz options to the command.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top