Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 161 for doPing (0.62 sec)

  1. pkg/kubelet/util/manager/watch_based_manager.go

    		// - we want to also handle the case when object is marked as immutable later
    		// - Secrets and ConfigMaps are periodically fetched by volumemanager anyway
    		// - doing that wouldn't provide visible scalability/performance gain - we
    		//   already have it from here
    		// - doing that would require significant refactoring to reflector
    		// we limit ourselves to just quickly stop the reflector here.
    		if c.isImmutable(object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        thread.joinSuccessfully(LONG_DELAY_MS);
        assertInterrupted();
      }
    
      public void testJoinTimeoutMultiInterruptExpired() {
        /*
         * We don't "need" to schedule a thread completion at all here, but by doing
         * so, we come the closest we can to testing that the wait time is
         * appropriately decreased on each progressive join() call.
         */
        TimedThread thread = TimedThread.createWithDelay(LONG_DELAY_MS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphEdge.java

    import org.gradle.internal.component.model.DependencyMetadata;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ResolvedGraphDependency} that is used during the resolution of the dependency graph.
     * Additional fields in this interface are not required to reconstitute the serialized graph, but are using during construction of the graph.
     */
    public interface DependencyGraphEdge extends ResolvedGraphDependency {
        DependencyGraphNode getFrom();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/sync/mutex.go

    	// the ownership. New arriving goroutines have an advantage -- they are
    	// already running on CPU and there can be lots of them, so a woken up
    	// waiter has good chances of losing. In such case it is queued at front
    	// of the wait queue. If a waiter fails to acquire the mutex for more than 1ms,
    	// it switches mutex to the starvation mode.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         *         {@link ProjectBuilderException}.
         */
        @Nonnull
        Optional<Project> getProject();
    
        /**
         * Gets the problems that were encountered during the project building.
         *
         * @return the problems that were encountered during the project building, can be empty but never {@code null}
         */
        @Nonnull
        Collection<BuilderProblem> getProblems();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

        testImplementation(libs.assertj) {
            because("We test assertion errors coming from AssertJ")
        }
        testImplementation("org.opentest4j:opentest4j") {
            version {
                // MultipleFailuresError appears only since 1.3.0-RC2
                require("1.3.0")
            }
            because("We test assertion errors coming from OpenTest4J")
        }
        testRuntimeOnly(libs.guice) {
            because("Used by TestNG")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/README.md

    # Grafana Dashboards
    
    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

            val generatedTopLevelClassifiers = declarationGenerators
                .asSequence()
                .flatMap {
                    // FIXME this function should be called only once during plugin's lifetime, so this usage is not really correct (2)
                    it.getTopLevelClassIds()
                }
                .filter { it.packageFqName == packageFqName }
                .map { it.shortClassName }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/software/build-init/build.gradle.kts

        compileOnly(libs.eclipseSisuPlexus) {
            exclude(module = "cdi-api") // To respect the Maven exclusion
        }
        compileOnly(libs.maven3Compat)
    
        // 3 dependencies below are recommended as implementation but doing so adds them to the distribution
        // TODO Check why we reference them and if so, why they don't need to be in the distribution
        compileOnly(libs.maven3Artifact)
        compileOnly(libs.mavenResolverApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      import_config.upgrade_legacy = true;
      // Disable shape inference during import as some TensorFlow op fails during
      // shape inference with dynamic shaped operands. This in turn causes the
      // import to fail. Shape inference during import is going to be removed and
      // the shape inference pass is run early in the pass pipeline, shape inference
      // during import is not necessary.
      import_config.enable_shape_inference = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top