Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 534 for tracking (0.23 sec)

  1. src/runtime/pprof/pprof.go

    // A Profile is a collection of stack traces showing the call sequences
    // that led to instances of a particular event, such as allocation.
    // Packages can create and maintain their own profiles; the most common
    // use is for tracking resources that must be explicitly closed, such as files
    // or network connections.
    //
    // A Profile's methods can be called from multiple goroutines simultaneously.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types.go

    				non0InitMem = max(non0InitMem, non0MemReq)
    			}
    		},
    	})
    
    	non0CPU = max(non0CPU, non0InitCPU)
    	non0Mem = max(non0Mem, non0InitMem)
    
    	// If Overhead is being utilized, add to the non-zero cpu/memory tracking for the pod. It has already been added
    	// into ScalarResources since it is part of requests
    	if pod.Spec.Overhead != nil {
    		if _, found := pod.Spec.Overhead[v1.ResourceCPU]; found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	defer c.queue.Done(key)
    
    	// do your work on the key.  This method will contains your "do stuff" logic
    	err := c.syncConfigMap()
    	if err == nil {
    		// if you had no error, tell the queue to stop tracking history for your key.  This will
    		// reset things like failure counts for per-item rate limiting
    		c.queue.Forget(key)
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller_test.go

    	i.client.ShutdownHandlers()
    }
    
    func (i *informerHandler[T]) HasSynced() bool {
    	return i.client.HasSynced()
    }
    
    // Test our (lack of) ability to do seamless updates of a cluster.
    // Tracking improvements in https://github.com/istio/istio/issues/49349
    func TestSeamlessMigration(t *testing.T) {
    	stop := make(chan struct{})
    	c := buildTestController(t, true)
    	tt := assert.NewTracker[string](t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         *
         * @since 3.9.0
         */
        private static final String MAVEN_REPO_LOCAL_TAIL = "maven.repo.local.tail";
    
        /**
         * User property for reverse dependency tree. If enabled, Maven will record ".tracking" directory into local
         * repository with "reverse dependency tree", essentially explaining WHY given artifact is present in local
         * repository.
         * Default: {@code false}, will not record anything.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/main.go

    	flagAsan          = flag.Bool("asan", false, "enable ASan interface")
    	flagAslr          = flag.Bool("aslr", true, "enable ASLR for buildmode=c-shared on windows")
    
    	flagFieldTrack = flag.String("k", "", "set field tracking `symbol`")
    	flagLibGCC     = flag.String("libgcc", "", "compiler support lib for internal linking; use \"none\" to disable")
    	flagTmpdir     = flag.String("tmpdir", "", "use `directory` for temporary files")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		return
    	}
    	svc := esc.c.GetService(hostName)
    	discoverabilityPolicy := esc.c.exports.EndpointDiscoverabilityPolicy(svc)
    
    	for _, e := range slice.Endpoints {
    		// Draining tracking is only enabled if persistent sessions is enabled.
    		// If we start using them for other features, this can be adjusted.
    		healthStatus := endpointHealthStatus(svc, e)
    		for _, a := range e.Addresses {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows.go

    // this assumes the four fastcall registers were first spilled
    // to the shadow space.
    type abiDesc struct {
    	parts []abiPart
    
    	srcStackSize uintptr // stdcall/fastcall stack space tracking
    	dstStackSize uintptr // Go stack space used
    	dstSpill     uintptr // Extra stack space for argument spill slots
    	dstRegisters int     // Go ABI int argument registers used
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. LICENSES/vendor/sigs.k8s.io/yaml/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    ) -> rd.RepresentativeDataset:
      """Logs the sample number for calibration.
    
      If in debug logging level, the "sample number / total num samples" is logged
      for every 5 iterations.
    
      This is often useful when tracking the progress of the calibration step which
      is often slow and may look stale if there's no logs being printed.
    
      Args:
        representative_dataset: The representative dataset.
    
      Yields:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top