Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for REPORT (0.14 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			_, needsRetry := nc.nodesToRetry.Load(node.Name)
    			switch {
    			case currentReadyCondition.Status != v1.ConditionTrue && observedReadyCondition.Status == v1.ConditionTrue:
    				// Report node event only once when status changed.
    				controllerutil.RecordNodeStatusChange(logger, nc.recorder, node, "NodeNotReady")
    				fallthrough
    			case needsRetry && observedReadyCondition.Status != v1.ConditionTrue:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		dir := filepath.Join(root, string(i))
    		if err := Mkdir(dir, 0700); err != nil {
    			t.Fatal(err)
    		}
    		mkdirTree(t, dir, level, max)
    	}
    }
    
    // Test that simultaneous RemoveAll do not report an error.
    // As long as it gets removed, we should be happy.
    func TestRemoveAllRace(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		// Windows has very strict rules about things like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    }
    
    func (r *readTrackingBody) Close() error {
    	r.didClose = true
    	return r.ReadCloser.Close()
    }
    
    // setupRewindBody returns a new request with a custom body wrapper
    // that can report whether the body needs rewinding.
    // This lets rewindBody avoid an error result when the request
    // does not have GetBody but the body hasn't been read at all yet.
    func setupRewindBody(req *Request) *Request {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       *   method-reference linking tries to look up the system classloader, and it fails because there
       *   isn't one yet.
       *
       * - lambda: Outside Google, we got a report of a similar problem in
       *   https://github.com/google/guava/issues/6565
       */
      @SuppressWarnings("AnonymousToLambda")
      static final Supplier<StatsCounter> CACHE_STATS_COUNTER =
          new Supplier<StatsCounter>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// which means the error should be ignored.
    		if crierror.IsNotFound(err) {
    			continue
    		}
    		if err != nil {
    			// Merely log this here; GetPodStatus will actually report the error out.
    			klog.V(4).InfoS("ContainerStatus return error", "containerID", c.Id, "err", err)
    			return nil, err
    		}
    		status := resp.GetStatus()
    		if status == nil {
    			return nil, remote.ErrContainerStatusNil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        }
    
        String futureToString = toString();
        final String unitString = unit.toString().toLowerCase(Locale.ROOT);
        String message = "Waited " + timeout + " " + unit.toString().toLowerCase(Locale.ROOT);
        // Only report scheduling delay if larger than our spin threshold - otherwise it's just noise
        if (remainingNanos + SPIN_THRESHOLD_NANOS < 0) {
          // We over-waited for our timeout.
          message += " (plus ";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        }
    
        String futureToString = toString();
        final String unitString = unit.toString().toLowerCase(Locale.ROOT);
        String message = "Waited " + timeout + " " + unit.toString().toLowerCase(Locale.ROOT);
        // Only report scheduling delay if larger than our spin threshold - otherwise it's just noise
        if (remainingNanos + SPIN_THRESHOLD_NANOS < 0) {
          // We over-waited for our timeout.
          message += " (plus ";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
            assertConfigCacheDiscarded()
            where:
            terse << [true, false]
        }
    
        def "doesn't report failures when exporting keys"() {
            createMetadataFile {
                noMetadataVerification()
                keyServer(keyServerFixture.uri)
                verifySignatures()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    			Bucket:        ri.Bucket,
    			Object:        ri.Object,
    			Objects:       ri.Objects,
    			ObjectsFailed: ri.ObjectsFailed,
    		}
    	}
    
    	return m
    }
    
    func (m *batchJobMetrics) report(jobID string) (metrics *madmin.BatchJobMetrics) {
    	metrics = &madmin.BatchJobMetrics{CollectedAt: time.Now(), Jobs: make(map[string]madmin.JobMetric)}
    	m.RLock()
    	defer m.RUnlock()
    
    	if jobID != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    	ParseComments                      // parse comments and add them to AST
    	Trace                              // print a trace of parsed productions
    	DeclarationErrors                  // report declaration errors
    )
    
    // The parser structure holds the parser's internal state.
    type parser struct {
    	file *token.File
    	scanner.ErrorVector
    	scanner scanner.Scanner
    
    	// Tracing/debugging
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top