Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for died (0.22 sec)

  1. pkg/kubelet/kubelet_pods.go

    	// of such pods should not be changed, and there is no need to sync them.
    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/net/http/server.go

    		// If the server never writes, yes, there are still contrived
    		// server & client behaviors where this fails to ever cancel the
    		// context, but that's kinda why HTTP/1.x pipelining died
    		// anyway.
    	}
    	if ne, ok := err.(net.Error); ok && cr.aborted && ne.Timeout() {
    		// Ignore this error. It's the expected error from
    		// another goroutine calling abortPendingRead.
    	} else if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

     *
     * A dependency can have the following states:
     * 1. Unattached: in this case the state of the dependency is tied to the state of it's associated {@link SelectorState}.
     * 2. Attached: in this case the Edge has been connected to actual nodes in the target component. Only possible if the {@link SelectorState} did not fail to resolve.
     */
    class EdgeState implements DependencyGraphEdge {
        private final DependencyState dependencyState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. src/iter/pull_test.go

    }
    
    func TestPullDoubleNext(t *testing.T) {
    	next, _ := Pull(doDoubleNext())
    	nextSlot = next
    	next()
    	if nextSlot != nil {
    		t.Fatal("double next did not fail")
    	}
    }
    
    var nextSlot func() (int, bool)
    
    func doDoubleNext() Seq[int] {
    	return func(_ func(int) bool) {
    		defer func() {
    			if recover() != nil {
    				nextSlot = nil
    			}
    		}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     * - not use Kotlin resolve inside, as these functions are called during session initialization, so Analysis API access is forbidden.
     *
     * #### Lifecycle Management
     *
     * A [KaResolveExtension] is tied to the lifetime of its module's analysis session. It is created by [KaResolveExtensionProvider] during
     * creation of an analysis session, and disposed after the analysis session has been invalidated.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. cni/pkg/log/uds_test.go

    			continue
    		}
    		// remove scope since it is constant and not needed to test
    		delete(parsedLog, "scope")
    		// check time is there
    		if _, f := parsedLog["time"]; !f {
    			t.Fatalf("log %v did not have time", i)
    		}
    		// but remove time since it changes on each test
    		delete(parsedLog, "time")
    		want := map[string]any{
    			"level": cases[i].level,
    			"msg":   cases[i].msg,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

          }
          String error = errorMessage.get();
          assertNull(error, error);
        }
        executor.shutdown();
      }
    
      /**
       * He did the bash, he did the future bash The future bash, it was a concurrency smash He did the
       * bash, it caught on in a flash He did the bash, he did the future bash
       */
    
      public void testFutureBash() {
        if (isWindows()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            then:
            GradleConnectionException gce = thrown()
            gce.cause instanceof NullPointerException
        }
    
        @TargetGradleVersion("<3.0")
        def "retries if daemon seems to have disappeared and a daemon that did not do anything is idling (<3.0)"() {
            given:
            iteration++
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

          }
          String error = errorMessage.get();
          assertNull(error, error);
        }
        executor.shutdown();
      }
    
      /**
       * He did the bash, he did the future bash The future bash, it was a concurrency smash He did the
       * bash, it caught on in a flash He did the bash, he did the future bash
       */
    
      public void testFutureBash() {
        if (isWindows()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/deltatest.go

    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    		// TODO: it suspicious full is never nil - are there case where we should be deleting everything?
    		// Both SotW and Delta did not respond, nothing to compare
    		return
    	}
    	newByName := slices.GroupUnique(sotwRes, (*discovery.Resource).GetName)
    	curByName := slices.GroupUnique(current, (*discovery.Resource).GetName)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top