Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 534 for tracking (0.25 sec)

  1. pkg/controlplane/apiserver/server.go

    				metav1.NamespaceSystem,
    				IdentityLeaseComponentLabelKey+"="+name,
    			).Run(hookContext.StopCh)
    			return nil
    		})
    	}
    
    	s.GenericAPIServer.AddPostStartHookOrDie("start-legacy-token-tracking-controller", func(hookContext genericapiserver.PostStartHookContext) error {
    		go legacytokentracking.NewController(client).Run(hookContext.StopCh)
    		return nil
    	})
    
    	return s, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. .teamcity/subprojects.json

        "name": "ide-plugins",
        "path": "platforms/ide/ide-plugins",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "input-tracking",
        "path": "platforms/core-configuration/input-tracking",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "installation-beacon",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/resource_quota_controller.go

    	ReplenishmentResyncPeriod controller.ResyncPeriodFunc
    	// Filters update events so we only enqueue the ones where we know quota will change
    	UpdateFilter UpdateFilter
    }
    
    // Controller is responsible for tracking quota usage status in the system
    type Controller struct {
    	// Must have authority to list all resources in the system, and update quota status
    	rqClient corev1client.ResourceQuotasGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            delegate.rootProject {
                // Instead of the rootProject's `allProjects`, collect the projects while still tracking the current referrer project
                val root = ******@****.***oject
                projectConfigurator.allprojects(crossProjectModelAccess.getAllprojects(referrerProject, root), action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
          and issue tracking systems that are managed by, or on behalf of, the
          Licensor for the purpose of discussing and improving the Work, but
          excluding communication that is conspicuously marked or otherwise
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    }
    
    // traceTryAcquire is like traceAcquire, but may return an invalid traceLocker even
    // if tracing is enabled. For example, it will return !ok if traceAcquire is being
    // called with an active traceAcquire on the M (reentrant locking). This exists for
    // optimistically emitting events in the few contexts where tracing is now allowed.
    //
    // nosplit for alignment with traceTryAcquire, so it can be used in the
    // same contexts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	jListerSynced cache.InformerSynced
    
    	// Jobs that the controller will check its TTL and attempt to delete when the TTL expires.
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// The clock for tracking time
    	clock clock.Clock
    }
    
    // New creates an instance of Controller
    func New(ctx context.Context, jobInformer batchinformers.JobInformer, client clientset.Interface) *Controller {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/net/http/httptest/server.go

    	return s.client
    }
    
    func (s *Server) goServe() {
    	s.wg.Add(1)
    	go func() {
    		defer s.wg.Done()
    		s.Config.Serve(s.Listener)
    	}()
    }
    
    // wrap installs the connection state-tracking hook to know which
    // connections are idle.
    func (s *Server) wrap() {
    	oldHook := s.Config.ConnState
    	s.Config.ConnState = func(c net.Conn, cs http.ConnState) {
    		s.mu.Lock()
    		defer s.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. tests/integration/README.md

    same way: T2 exits, then T2a and T2b are run asynchronously to completion.
    
    ### Using Components
    
    The framework itself is just a platform for running tests and tracking resources. Without these `resources`, there
    isn't much added value. Enter: components.
    
    Components are utilities that provide abstractions for Istio resources. They are maintained in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    }
                    if (host.ignoredFileSystemCheckInputs != ignoredFileSystemCheckInputPaths) {
                        return "the set of paths ignored in file-system-check input tracking has changed"
                    }
                }
                is ConfigurationCacheFingerprint.EnvironmentVariablesPrefixedBy -> input.run {
                    val current = System.getenv().filterKeysByPrefix(prefix)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top