Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,030 for doPing (3.45 sec)

  1. src/cmd/dist/buildtool.go

    		return fmt.Sprintf(`%spackage ssa
    
    func rewriteValue%s(v *Value) bool { panic("unused during bootstrap") }
    func rewriteBlock%s(b *Block) bool { panic("unused during bootstrap") }
    `, generatedHeader, archCaps, archCaps)
    	}
    
    	return bootstrapFixImports(srcFile)
    }
    
    var (
    	importRE      = regexp.MustCompile(`\Aimport\s+(\.|[A-Za-z0-9_]+)?\s*"([^"]+)"\s*(//.*)?\n\z`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/generic.go

    	// Cache for storing the runtime states required for syncing pods.
    	cache kubecontainer.Cache
    	// For testability.
    	clock clock.Clock
    	// Pods that failed to have their status retrieved during a relist. These pods will be
    	// retried during the next relisting.
    	podsToReinspect map[types.UID]*kubecontainer.Pod
    	// Stop the Generic PLEG by closing the channel.
    	stopCh chan struct{}
    	// Locks the relisting of the Generic PLEG
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/cmd/distpack/pack.go

    		"**/*.exe~", // go.dev/issue/23894
    		// Generated during make.bat/make.bash.
    		"src/cmd/dist/dist",
    		"src/cmd/dist/dist.exe",
    	)
    
    	// The source distribution removes files generated during the release build.
    	// See ../dist/build.go's deptab.
    	srcArch := base.Clone()
    	srcArch.Remove(
    		"bin/**",
    		"pkg/**",
    
    		// Generated during cmd/dist. See ../dist/build.go:/gentab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    However, if you run your task a second time, you will see that it runs much faster.
    This is because the worker daemon(s) started during the initial build have persisted and are available for use immediately during subsequent builds:
    
    [listing]
    ----
    $ gradle clean md5
    
    include::{snippetsPath}/workerApi/md5ProcessIsolation/tests/md5Task2.out[]
    ----
    
    [[isolation-modes]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                        occurs during the snapshot creation. Upon success, this error field
                        will be cleared.
                      properties:
                        message:
                          description: 'message is a string detailing the encountered error
                          during snapshot creation if specified. NOTE: message may be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

            // sure interpolation of the directories below uses translated paths.
            // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the
            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
            translatedPrefixes.add("build.testOutputDirectory");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. security/pkg/credentialfetcher/plugin/gce_test.go

    		jwt           string
    		jwtPath       string
    		expectedToken string
    		expectedCall  int
    	}{
    		// mock metadata server returns an expired token, that forces rotation job
    		// to fetch new token during each rotation.
    		"expired token needs rotation": {
    			jwt:           thirdPartyJwt,
    			jwtPath:       fmt.Sprintf("/tmp/security-pkg-credentialfetcher-plugin-gcetest-%s", uuid.New().String()),
    			expectedToken: thirdPartyJwt,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

        @Test
        void testCalculationOfBuildPlanWithIndividualTaskWherePluginIsSpecifiedInThePom() throws Exception {
            // We are doing something like "mvn resources:resources" where no version is specified but this
            // project we are working on has the version specified in the POM so the version should come from there.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

             * than a handful of exceptions. But it seems prudent to set a cap on how many we'll cache.
             * This avoids out-of-control memory consumption, and it keeps the cache from growing so
             * large that doing the lookup is noticeably slower than redoing the work would be.
             *
             * Ideally we'd have a real eviction policy, but until we see a problem in practice, I hope
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/internal/trace/gc.go

    			g := st.Resource.Goroutine()
    			if inGC[g] || bgMark[g] {
    				if !old.Executing() && new.Executing() {
    					// Started running while doing GC things.
    					ps[ev.Proc()].gc++
    				} else if old.Executing() && !new.Executing() {
    					// Stopped running while doing GC things.
    					ps[ev.Proc()].gc--
    				}
    			}
    			states[g] = new
    		case EventLabel:
    			l := ev.Label()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top