Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 227 for bursty (0.16 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/SynchronizedToolingImplementationLoaderTest.groovy

        def loader = new SynchronizedToolingImplementationLoader(target)
    
        def "blocks and reports progress when busy"() {
            when:
            start {
                loader.create(distro, factory, _ as InternalBuildProgressListener, params, cancellationToken)
            }
            async {
                thread.blockUntil.busy
                loader.create(distro, factory, _ as InternalBuildProgressListener, params, cancellationToken)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. cmd/listen-notification-handlers.go

    	setEventStreamHeaders(w)
    
    	// Listen Publisher and peer-listen-client uses nonblocking send and hence does not wait for slow receivers.
    	// Use buffered channel to take care of burst sends or slow w.Write()
    	mergeCh := make(chan []byte, globalAPIConfig.getRequestsPoolCapacity()*len(globalEndpoints.Hostnames()))
    	localCh := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity())
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/validation/validation_test.go

    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.EventBurst = -1
    			return conf
    		},
    		errMsg: "invalid configuration: eventBurst (--event-burst) -1 must not be a negative number",
    	}, {
    		name: "invalid EventRecordQPS",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.EventRecordQPS = -1
    			return conf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cluster/common.sh

        fi
        export NODE_BINARY_TAR
      fi
    
      # This tarball is used by GCI, Ubuntu Trusty, and Container Linux.
      KUBE_MANIFESTS_TAR=
      if [[ "${MASTER_OS_DISTRIBUTION:-}" == "trusty" || "${MASTER_OS_DISTRIBUTION:-}" == "gci" || "${MASTER_OS_DISTRIBUTION:-}" == "ubuntu" ]] || \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReportStatusIntegrationSpec.groovy

            then:
            out =~ """^$DaemonMessages.NO_DAEMONS_RUNNING
    
    $ReportDaemonStatusClient.STATUS_FOOTER.*""".toString()
        }
    
        def "reports idle, busy and stopped statuses of daemons"() {
            given:
            server.start()
            buildFile << """
    task block {
        doLast {
            ${server.callFromBuild("block")}
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. 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)
Back to top