Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 266 for bursty (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            buildFile << """
                task block {
                    doLast {
                        new URL("${getUrl('started')}").text
    
                        // Block indefinitely for the daemon to appear busy
                        new java.util.concurrent.Semaphore(0).acquireUninterruptibly()
                    }
                }
            """
    
            given:
            expectEvent("started")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pilot/pkg/status/distribution/state.go

    	// in the mesh.  These values can be configured using environment variables for tuning (see pilot/pkg/features)
    	restConfig.QPS = float32(features.StatusQPS)
    	restConfig.Burst = features.StatusBurst
    	var err error
    	if c.dynamicClient, err = dynamic.NewForConfig(restConfig); err != nil {
    		scope.Fatalf("Could not connect to kubernetes: %s", err)
    	}
    
    	// configmap informer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top