Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 543 for toTracking (0.32 sec)

  1. pkg/controller/job/tracking_utils.go

    type uidSet struct {
    	sync.RWMutex
    	set sets.Set[string]
    	key string
    }
    
    // uidTrackingExpectations tracks the UIDs of Pods the controller is waiting to
    // observe tracking finalizer deletions.
    type uidTrackingExpectations struct {
    	store cache.Store
    }
    
    // GetUIDs is a convenience method to avoid exposing the set of expected uids.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/controller/job/metrics/metrics.go

    	// regardless of whether they are owned by a Job.
    	TerminatedPodsTrackingFinalizerTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem: JobControllerSubsystem,
    			Name:      "terminated_pods_tracking_finalizer_total",
    			Help: `The number of terminated pods (phase=Failed|Succeeded)
    that have the finalizer batch.kubernetes.io/job-tracking
    The event label can be "add" or "delete".`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                        }
                    }
    
                    if (channel != null) {
                        try {
                            channel.close();
                        } catch (IOException e) {
                            getLogger().debug("Error closing FileChannel for resolution tracking file: " + touchfile, e);
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

     * A problem is identified using a key object.
     * The implementation should be thread-safe and should support tracking problems in multiple threads, each with its own call stack.
     */
    interface DynamicCallProblemReporting {
        /**
         * Begin tracking a new dynamic call on the call stack, with no problems reported in it initially.
         * The [entryPoint] is stored and checked in [leaveDynamicCall] later.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

     * for equality with the argument passed to {@code leaveDynamicCall}.
     * <p>
     * The implementations should be thread-safe and should support tracking the context in multiple threads.
     */
    // TODO: consider transforming this to a more generic tool for tracking the events
    //       of entering and leaving some generic context (marked with a key?)
    @ServiceScope(Scope.CrossBuildSession.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eventhandler.go

    )
    
    // EventType represents the type of object we are tracking, mapping to envoy TypeUrl.
    type EventType = string
    
    var AllTrackingEventTypes = sets.New[EventType](
    	v3.ClusterType,
    	v3.ListenerType,
    	v3.RouteType,
    	v3.EndpointType,
    )
    
    // EventHandler allows for generic monitoring of xDS ACKS and disconnects, for the purpose of tracking
    // Config distribution through the mesh.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/restored_resource_revival_state.h

    namespace tensorflow {
    
    // All "Resources" should have these 3 saved functions:
    // https://github.com/tensorflow/tensorflow/blob/86dc281333d7d277ddc1882f2bca4b17e7ec40e5/tensorflow/python/training/tracking/tracking.py#L277-L281
    struct RestoredResourceRevivalState {
      std::string device;
      TFConcreteFunctionRevivalState* create_resource = nullptr;
      TFConcreteFunctionRevivalState* initialize = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/java-version-tracking/groovy/settings.gradle

    rootProject.name = 'java-version-tracking'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43 bytes
    - Viewed (0)
  9. pilot/pkg/model/disabled_ledger.go

    package model
    
    import (
    	"errors"
    
    	"istio.io/istio/pkg/ledger"
    )
    
    // DisabledLedger is an empty mock of the ledger.Ledger interface
    // which we will substitute when distribution tracking is disabled.
    type DisabledLedger struct {
    	ledger.Ledger
    }
    
    func (d *DisabledLedger) Put(key, value string) (string, error) {
    	return "", nil
    }
    
    func (d *DisabledLedger) Delete(key string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityPluginUnsafeConfigurationService.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface DevelocityPluginUnsafeConfigurationService {
        /**
         * Run some code without tracking its inputs.
         * <p>
         * All code that runs during {@code supplier.get()} is exempt from configuration input tracking.
         * That code can for example read files from disk or system properties at configuration time without
         * them becoming a configuration input.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top