Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 961 for doPing (1.01 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

             *     <li> {@link org.codehaus.groovy.runtime.callsite.CallSiteArray#replaceCallSite}
             * </ul>
             *
             * Because of it doing so, our decorated call site is removed from the dynamic invocation code path, and we lose the ability to track dynamic call entry points. <p>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // 70% of original number of DaemonSet pods are available at all times during
      // the update.
      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
    
      // The maximum number of nodes with an existing available DaemonSet pod that
      // can have an updated DaemonSet pod during during an update.
      // Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // 70% of original number of DaemonSet pods are available at all times during
      // the update.
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
    
      // The maximum number of nodes with an existing available DaemonSet pod that
      // can have an updated DaemonSet pod during during an update.
      // Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  4. 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)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // If this CAS succeeds, we know that the provided callable will never be invoked,
                // so when oldFuture completes it is safe to allow the next submitted task to
                // proceed. Doing this immediately here lets the next task run without waiting for
                // the cancelled task's executor to run the noop AsyncCallable.
                //
                // ---
                //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top