Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,650 for tracking (0.23 sec)

  1. pkg/kubelet/status/state/state_checkpoint.go

    	checkpointManager, err := checkpointmanager.NewCheckpointManager(stateDir)
    	if err != nil {
    		return nil, fmt.Errorf("failed to initialize checkpoint manager for pod allocation tracking: %v", err)
    	}
    	stateCheckpoint := &stateCheckpoint{
    		cache:             NewStateMemory(),
    		checkpointManager: checkpointManager,
    		checkpointName:    checkpointName,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 00:16:44 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. test/typeparam/metrics.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package metrics provides tracking arbitrary metrics composed of
    // values of comparable types.
    package main
    
    import (
    	"fmt"
    	"sort"
    	"sync"
    )
    
    // _Metric1 tracks metrics of values of some type.
    type _Metric1[T comparable] struct {
    	mu sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise"
    	fcrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    )
    
    // request is a temporary container for "requests" with additional
    // tracking fields required for QueueSet functionality.
    type request struct {
    	ctx context.Context
    
    	qs *queueSet
    
    	flowDistinguisher string
    	fsName            string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. istioctl/pkg/wait/wait_test.go

    					return false, nil, err
    				}
    				// Kubernetes Fake watches do not add initial state, but real server does
    				// https://kubernetes.io/docs/reference/using-api/api-concepts/#semantics-for-watch
    				// Tracking in https://github.com/kubernetes/kubernetes/issues/123109
    				gvk := gvk.MustFromGVR(gvr).Kubernetes()
    				objs, err := fc.Tracker().List(gvr, gvk, ns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AbstractAccessTrackingMapTest.groovy

            'existing' | 'existingValue' | 'missing'      | null           | false
            'missing'  | null            | 'otherMissing' | null           | false
        }
    
        // Null-hostility tests. At the time of writing all tracking map implementations are null-hostile
        def "get(null) is not tracked and throws"() {
            when:
            getMapUnderTestToRead().get(null)
    
            then:
            thrown(NullPointerException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/runtime/os_wasip1.go

    // pointers to be 32 bits so we use this type alias to represent pointers in
    // structs and arrays passed as arguments to WASI functions.
    //
    // Note that the use of an integer type prevents the compiler from tracking
    // pointers passed to WASI functions, so we must use KeepAlive to explicitly
    // retain the objects that could otherwise be reclaimed by the GC.
    type uintptr32 = uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    	return func(w http.ResponseWriter, req *http.Request) {
    		ctx := req.Context()
    		// For performance tracking purposes.
    		ctx, span := tracing.Start(ctx, "List", traceFields(req)...)
    
    		namespace, err := scope.Namer.Namespace(req)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/math/big/decimal.go

    	if shift > 0 {
    		m = nat(nil).shl(m, uint(shift))
    		shift = 0
    	}
    
    	// Convert mantissa into decimal representation.
    	s := m.utoa(10)
    	n := len(s)
    	x.exp = n
    	// Trim trailing zeros; instead the exponent is tracking
    	// the decimal point independent of the number of digits.
    	for n > 0 && s[n-1] == '0' {
    		n--
    	}
    	x.mant = append(x.mant[:0], s[:n]...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

          // "_create_resource", "_initialize", and "_destroy_resource".
          // https://github.com/tensorflow/tensorflow/blob/ad66f588c1666ade8051feb42811fa27b285271c/tensorflow/python/training/tracking/tracking.py#L277-L281
          if (child.local_name() == "_create_resource" &&
              obj_graph.nodes(child.node_id()).kind_case() ==
                  SavedObject::kFunction) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    		ctx := r.Context()
    		requestInfo, ok := apirequest.RequestInfoFrom(ctx)
    		if !ok {
    			handleError(w, r, fmt.Errorf("no RequestInfo found in context, handler chain must be wrong"))
    			return
    		}
    
    		// Skip tracking long running events.
    		if longRunningRequestCheck != nil && longRunningRequestCheck(r, requestInfo) {
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    		var c chan bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top