Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 805 for livez (0.06 sec)

  1. pkg/serviceaccount/metrics.go

    			Help:           "Cumulative stale projected service account tokens used",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// mauallyCreatedTokensTotal is the number of manually created secret-based long lived tokens.
    	manuallyCreatedTokensTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeServiceAccountSubsystem,
    			Name:           "legacy_manual_token_uses_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.md

    - Promoted plugin subcommand resolution feature to `beta`. ([#120663](https://github.com/kubernetes/kubernetes/pull/120663), [@ardaguclu](https://github.com/ardaguclu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to compare last applied object and live object: %v", err)
    	}
    
    	// Remove fields in last applied that are different, added, or missing in
    	// the live object.
    	// Because last-applied fields don't match the live object fields,
    	// then we don't own these fields.
    	lastAppliedObjFieldSet = lastAppliedObjFieldSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/legacytokentracking/controller_test.go

    		clientObjects     []runtime.Object
    		existingConfigMap *corev1.ConfigMap
    
    		expectedErr     error
    		expectedActions []core.Action
    	}{
    		{
    			name:          "create configmap [no cache, no live object]",
    			clientObjects: []runtime.Object{},
    			expectedActions: []core.Action{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 17:33:34 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

            continue;
          use.set(std::get<1>(p));
        }
      }
    }
    
    // Get all escaped live-out values of a region.
    void GetLiveOuts(Region* region, llvm::SmallVectorImpl<Value>* live_outs) {
      live_outs->clear();
    
      for (Operation& op : region->front()) {
        for (Value v : op.getResults()) {
          // A value is live-out if any of its users are not inside value producer's
          // region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. .idea/scopes/IDE.xml

    </component>...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 24 16:22:04 UTC 2017
    - 609 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    A typical example is whenever a component is relocated at different coordinates in a new release.
    For example, the ASM library lived at `asm:asm` coordinates until version `3.3.1`, then changed to `org.ow2.asm:asm` since `4.0`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager_test.go

    	}
    	before = f.Live()
    	// Wait to make sure the timestamp is different
    	time.Sleep(time.Second)
    	if err := f.Update(obj.DeepCopyObject(), "fieldmanager_test_update"); err != nil {
    		t.Fatalf("failed to update object: %v", err)
    	}
    	if !reflect.DeepEqual(before, f.Live()) {
    		t.Fatalf("No-op update has changed the object:\n%v\n---\n%v", before, f.Live())
    	}
    	before = f.Live()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  9. tools/certs/README.md

    For example:
    
    ```bash
    make -f Makefile.selfsigned.mk root-ca
    ```
    
    Note that the Makefile generates long-lived intermediate certificates. While this might be
    acceptable for demonstration purposes, a more realistic and secure deployment would use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 20:29:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/testdata/deadcode/ifacemethod4.go

    // Copyright 2020 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.
    
    // Test that a live type's method is not live even if
    // it matches an interface method, as long as the interface
    // method is not used.
    
    package main
    
    type T int
    
    //go:noinline
    func (T) M() {}
    
    type I interface{ M() }
    
    var p *T
    var pp *I
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 513 bytes
    - Viewed (0)
Back to top