Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 211 for janitor (0.21 sec)

  1. pkg/kubelet/cloudresource/cloud_request_manager.go

    		cloud:      cloud,
    		syncPeriod: syncPeriod,
    		nodeName:   nodeName,
    		// nodeAddressesMonitor is a monitor that guards a result (nodeAddresses,
    		// nodeAddressesErr) of the sync loop under the condition that a result has
    		// been saved at least once. The semantics here are:
    		//
    		// * Readers of the result will wait on the monitor until the first result
    		//   has been saved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	actionLabel := monitor.ActionLabelNone
    	start := time.Now()
    	defer func() {
    		errorLabel := monitor.ErrorLabelNone
    		if retErr != nil {
    			// In case of error, set "internal" as default.
    			errorLabel = monitor.ErrorLabelInternal
    		}
    		if errors.Is(retErr, errSpec) {
    			errorLabel = monitor.ErrorLabelSpec
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. samples/addons/README.md

    ### Grafana
    
    [Grafana](http://grafana.com/) is an open source monitoring solution that can be used to configure dashboards for Istio.
    You can use Grafana to monitor the health of Istio and of applications within the service mesh.
    
    This sample provides the following dashboards:
    
    * [Mesh Dashboard](https://grafana.com/grafana/dashboards/7639) provides an overview of all services in the mesh.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/InterruptibleMonitorTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    
    /**
     * Tests for {@link Monitor}'s interruptible methods.
     *
     * @author Justin T. Sampson
     */
    public class InterruptibleMonitorTest extends MonitorTestCase {
    
      public InterruptibleMonitorTest() {
        super(true);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 867 bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/InterruptibleMonitorTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    
    /**
     * Tests for {@link Monitor}'s interruptible methods.
     *
     * @author Justin T. Sampson
     */
    public class InterruptibleMonitorTest extends MonitorTestCase {
    
      public InterruptibleMonitorTest() {
        super(true);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 867 bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/UninterruptibleMonitorTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    
    /**
     * Tests for {@link Monitor}'s uninterruptible methods.
     *
     * @author Justin T. Sampson
     */
    public class UninterruptibleMonitorTest extends MonitorTestCase {
    
      public UninterruptibleMonitorTest() {
        super(false);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 874 bytes
    - Viewed (0)
  7. build-logic/build.gradle.kts

    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
    }
    
    description = "Provides plugins that are used by Gradle subprojects"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    }
    
    val clean by tasks.registering {
        val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties")
        val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/TaskInAnotherBuild.java

            if (!successors.isEmpty()) {
                throw new IllegalArgumentException();
            }
        }
    
        @Override
        public void prepareForExecution(Action<Node> monitor) {
            getTarget().onComplete(() -> monitor.execute(this));
        }
    
        @Nullable
        @Override
        public ResourceLock getProjectToLock() {
            // Ignore, as the node in the other build's execution graph takes care of this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    	registry.CustomMustRegister(storageMonitor)
    
    	testCases := []struct {
    		desc           string
    		getterOverride func() ([]Monitor, error)
    		err            error
    		want           string
    	}{
    		{
    			desc: "fake etcd getter",
    			getterOverride: func() ([]Monitor, error) {
    				return []Monitor{fakeEtcdMonitor{storageSize: 1e9}}, nil
    			},
    			err: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/monitor/event/EventMonitor.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.monitor.event;
    
    /**
     */
    @Deprecated
    public interface EventMonitor {
    
        void startEvent(String eventName, String target, long timestamp);
    
        void endEvent(String eventName, String target, long timestamp);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top