Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 87 for bursty (0.13 sec)

  1. cni/pkg/nodeagent/server.go

    func buildKubeClient(kubeConfig string) (kube.Client, error) {
    	// Used by validation
    	kubeRestConfig, err := kube.DefaultRestConfig(kubeConfig, "", func(config *rest.Config) {
    		config.QPS = 80
    		config.Burst = 160
    	})
    	if err != nil {
    		return nil, fmt.Errorf("failed creating kube config: %v", err)
    	}
    
    	client, err := kube.NewClient(kube.NewClientConfigForRestConfig(kubeRestConfig), "")
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure_helper_test.go

    	if err != nil {
    		c.t.Fatalf("Failed to create temp directory: %v", err)
    	}
    
    	c.kubeHome = d
    	c.manifestSources = filepath.Join(c.kubeHome, "kube-manifests", "kubernetes", "gci-trusty")
    
    	currentPath, err := os.Getwd()
    	if err != nil {
    		c.t.Fatalf("Failed to get current directory: %v", err)
    	}
    	gceDir := filepath.Dir(currentPath)
    	c.manifestTemplateDir = filepath.Join(gceDir, "manifests")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleEncodingSpec.groovy

        def "if a daemon exists but is using a file encoding, a new compatible daemon will be created and used"() {
            when:
            startBuild(null, "US-ASCII")
            waitForBuildToWait()
    
            then:
            busy()
            daemonContext {
                assert daemonOpts.contains("-Dfile.encoding=US-ASCII")
            }
    
            then:
            completeBuild()
    
            then:
            idle()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStartupMessage.java

            if (totalUnavailableDaemons > 0) {
                final List<String> reasons = new ArrayList<>();
                if (numBusy > 0) {
                    reasons.add(numBusy + " busy");
                }
                if (numIncompatible > 0) {
                    reasons.add(numIncompatible + " incompatible");
                }
                if (numStopped > 0) {
                    reasons.add(numStopped + " stopped");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/InvalidateVirtualFileSystemAfterChangeCrossVersionSpec.groovy

                connection.notifyDaemonsAboutChangedPaths(toPaths(changedPaths))
            }
    
            then:
            pathsInvalidated()
        }
    
        @TargetGradleVersion(">=6.8")
        def "invalidates paths for single busy daemon"() {
            server.start()
            buildFile << """
                task block {
                    doLast {
                        ${server.callFromBuild("block")}
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/runtime/lock_wasip1.go

    //go:build wasip1
    
    package runtime
    
    // wasm has no support for threads yet. There is no preemption.
    // See proposal: https://github.com/WebAssembly/threads
    // Waiting for a mutex or timeout is implemented as a busy loop
    // while allowing other goroutines to run.
    
    const (
    	mutex_unlocked = 0
    	mutex_locked   = 1
    
    	active_spin     = 4
    	active_spin_cnt = 30
    )
    
    func mutexContended(l *mutex) bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasher.java

                    }
    
                    // If both the peekAhead buffer and the input stream are empty, we're done
                    if (next == -1) {
                        break;
                    }
    
                    // Bust out if we detect a binary file
                    if (isControlCharacter(next)) {
                        return Optional.empty();
                    }
    
                    // If the next bytes are '\r' or '\r\n', replace it with '\n'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    [listing]
    ----
    language: java
    install: skip
    
    os: linux
    dist: trusty
    jdk: oraclejdk8
    
    script:
      - ./gradlew build --scan -s
    ----
    
    Select the project from the Travis CI profile.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/tracebackctxt.go

    			}
    		}(i)
    	}
    	wg.Wait()
    
    	fmt.Println("OK")
    }
    
    //export TracebackContextPreemptionGoFunction
    func TracebackContextPreemptionGoFunction(i C.int) {
    	// Do some busy work.
    	fmt.Sprintf("%d\n", i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 29 15:30:38 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

            }
            toolingApi.daemons.daemon.assertIdle()
    
            when:
            toolingApi.close()
    
            then:
            toolingApi.daemons.daemon.stops()
        }
    
        def "cleans up busy daemons once they become idle when tooling API session is shutdown"() {
            given:
            server.start()
            buildFile << """
    task slow { doLast { ${server.callFromBuild('sync')} } }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top