Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 385 for tracking (0.26 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	// 1.27+, one release after JobTrackingWithFinalizers graduates to GA, the
    	// apiserver and job controller will ignore this annotation and they will
    	// always track jobs using finalizers.
    	JobTrackingFinalizer = labelPrefix + "job-tracking"
    	// The Job labels will use batch.kubernetes.io as a prefix for all labels
    	// Historically the job controller uses unprefixed labels for job-name and controller-uid and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    }
    
    // computeEncryptionConfigHash returns the expected hash for an encryption config file that has been loaded as bytes.
    // We use a hash instead of the raw file contents when tracking changes to avoid holding any encryption keys in memory outside of their associated transformers.
    // This hash must be used in-memory and not externalized to the process because it has no cross-release stability guarantees.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Added `apiextensions_apiserver_update_ratcheting_time` metric for tracking time taken during requests by feature `CRDValidationRatcheting`. ([#121462](https://github.com/kubernetes/kubernetes/pull/121462), [@alexzielenski](https://github.com/alexzielenski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. src/runtime/stack.go

    }
    
    // startingStackSize is the amount of stack that new goroutines start with.
    // It is a power of 2, and between _FixedStack and maxstacksize, inclusive.
    // startingStackSize is updated every GC by tracking the average size of
    // stacks scanned during the GC.
    var startingStackSize uint32 = fixedStack
    
    func gcComputeStartingStackSize() {
    	if debug.adaptivestackstart == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    }
    
    // XDSUpdater is used for direct updates of the xDS model and incremental push.
    // Pilot uses multiple registries - for example each K8S cluster is a registry
    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    		return nil, nil
    	}
    	return metaproxier.NewMetaProxier(ipv4Proxier, ipv6Proxier), nil
    }
    
    // Proxier is an nftables based proxy
    type Proxier struct {
    	// ipFamily defines the IP family which this proxier is tracking.
    	ipFamily v1.IPFamily
    
    	// endpointsChanges and serviceChanges contains all changes to endpoints and
    	// services that happened since nftables was synced. For a single object,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    	relocVariant map[relocId]sym.RelocVariant // stores variant relocs
    
    	// Used to implement field tracking; created during deadcode if
    	// field tracking is enabled. Reachparent[K] contains the index of
    	// the symbol that triggered the marking of symbol K as live.
    	Reachparent []Sym
    
    	// CgoExports records cgo-exported symbols by SymName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// by the StatefulSet's updateRevision.
    	RollingUpdateStatefulSetStrategyType StatefulSetUpdateStrategyType = "RollingUpdate"
    	// OnDeleteStatefulSetStrategyType triggers the legacy behavior. Version
    	// tracking and ordered rolling restarts are disabled. Pods are recreated
    	// from the StatefulSetSpec when they are manually deleted. When a scale
    	// operation is performed with this strategy,specification version indicated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - This PR adds tracing support to the kubelet's read-only endpoint, which currently does not have tracing. It makes use the WithPublicEndpoint option to prevent callers from influencing sampling decisions. ([#121770](https://github.com/kubernetes/kubernetes/pull/121770), [@frzifus](https://github.com/frzifus))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/runtime/map.go

    	return h
    }
    
    // makeBucketArray initializes a backing array for map buckets.
    // 1<<b is the minimum number of buckets to allocate.
    // dirtyalloc should either be nil or a bucket array previously
    // allocated by makeBucketArray with the same t and b parameters.
    // If dirtyalloc is nil a new backing array will be alloced and
    // otherwise dirtyalloc will be cleared and reused as backing array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top