Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for resort (0.13 sec)

  1. src/runtime/proc.go

    	case _Grunnable:
    		// We just transitioned into runnable, so record what
    		// time that happened.
    		now := nanotime()
    		gp.trackingStamp = now
    	case _Grunning:
    		// We're transitioning into running, so turn off
    		// tracking and record how much time we spent in
    		// runnable.
    		gp.tracking = false
    		sched.timeToRun.record(gp.runnableTime)
    		gp.runnableTime = 0
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    		if result := manager.Admit(&lifecycle.PodAdmitAttributes{Pod: pod}); expected[i] != result.Admit {
    			t.Errorf("Admit pod: %v, expected: %v, actual: %v", pod, expected[i], result.Admit)
    		}
    	}
    
    	// reduce memory pressure
    	fakeClock.Step(1 * time.Minute)
    	summaryProvider.result = summaryStatsMaker("2Gi", podStats)
    	podKiller.pod = nil // reset state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    	}
    
    	// TODO(random-liu): Refactor the unit test to be table driven test.
    	// Should report kubelet not ready if the runtime check is out of date
    	clock.SetTime(time.Now().Add(-maxWaitForContainerRuntime))
    	kubelet.updateRuntimeUp()
    	checkNodeStatus(v1.ConditionFalse, "KubeletNotReady")
    
    	// Should report kubelet ready if the runtime check is updated
    	clock.SetTime(time.Now())
    	kubelet.updateRuntimeUp()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	kubelet.workQueue.Enqueue(pods[4].UID, 2*time.Minute)
    
    	clock.Step(1 * time.Minute)
    
    	expected := []*v1.Pod{pods[2], pods[3], pods[0]}
    	podsToSync := kubelet.getPodsToSync()
    	sort.Sort(podsByUID(expected))
    	sort.Sort(podsByUID(podsToSync))
    	assert.Equal(t, expected, podsToSync)
    }
    
    func TestGenerateAPIPodStatusWithSortedContainers(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
            """
    
            when:
            def failure = runAndFail("dependencyInsight", "--dependency", "unknown")
    
            then:
            failure.assertHasCause("Dependency insight report cannot be generated because the input configuration was not specified.")
        }
    
        def "indicates that requested dependency cannot be found for default configuration"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    		}
    		sort.Strings(list)
    		pmap[pattern] = list
    	}
    
    	for file := range have {
    		files = append(files, file)
    	}
    	sort.Strings(files)
    	return files, pmap, nil
    }
    
    func validEmbedPattern(pattern string) bool {
    	return pattern != "." && fs.ValidPath(pattern)
    }
    
    // isBadEmbedName reports whether name is the base name of a file that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

         * @see org.apache.maven.model.ReportPlugin#getKey()
         */
        public java.util.Map<String, ReportPlugin> getReportPluginsAsMap() {
            return getPlugins().stream().collect(Collectors.toMap(report -> report.getKey(), report -> report));
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <!-- Profile support -->
        <class>
          <name>Profile</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	kl.reasonCache.Update(pod.UID, result)
    	if err := result.Error(); err != nil {
    		// Do not return error if the only failures were pods in backoff
    		for _, r := range result.SyncResults {
    			if r.Error != kubecontainer.ErrCrashLoopBackOff && r.Error != images.ErrImagePullBackOff {
    				// Do not record an event here, as we keep all event logging for sync pod failures
    				// local to container runtime, so we get better errors.
    				return false, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

              << "from different generators." << std::endl;
          const Iterator* typed_other =
              CheckedDowncastToActualType<const Iterator>(&other);
          // We must report iterators equal if they both point beyond their
          // respective ranges. That can happen in a variety of fashions,
          // so we have to consult AtEnd().
          return (AtEnd() && typed_other->AtEnd()) ||
             (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

              << "from different generators." << std::endl;
          const Iterator* typed_other =
              CheckedDowncastToActualType<const Iterator>(&other);
          // We must report iterators equal if they both point beyond their
          // respective ranges. That can happen in a variety of fashions,
          // so we have to consult AtEnd().
          return (AtEnd() && typed_other->AtEnd()) ||
             (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
Back to top