Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for relabel (0.15 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    }{
    	{
    		// Reconcile the beta and the stable OS label using the stable label as the source of truth.
    		// TODO(#89477): no earlier than 1.22: drop the beta labels if they differ from the GA labels
    		primaryKey:            v1.LabelOSStable,
    		secondaryKey:          kubeletapis.LabelOS,
    		ensureSecondaryExists: true,
    	},
    	{
    		// Reconcile the beta and the stable arch label using the stable label as the source of truth.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// ErrPostStartHook - failed to execute PostStartHook
    	ErrPostStartHook = errors.New("PostStartHookError")
    )
    
    // recordContainerEvent should be used by the runtime manager for all container related events.
    // it has sanity checks to ensure that we do not write events that can abuse our masters.
    // in particular, it ensures that a containerID never appears in an event message as that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    			continue // these are unexported fields that are handled separately
    		default:
    			t.Errorf("all fields must be accounted for, but saw unknown field %q", fn)
    		}
    	}
    	// Set the unexported fields related to session ticket keys, which are copied with Clone().
    	c1.autoSessionTicketKeys = []ticketKey{c1.ticketKeyFromBytes(c1.SessionTicketKey)}
    	c1.sessionTicketKeys = []ticketKey{c1.ticketKeyFromBytes(c1.SessionTicketKey)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    	typeNoalg                  // suppress hash and eq algorithm generation
    	typeDeferwidth             // width computation has been deferred and type is on deferredTypeStack
    	typeRecur
    	typeIsShape  // represents a set of closely related types, for generics
    	typeHasShape // there is a shape somewhere in the type
    )
    
    func (t *Type) NotInHeap() bool  { return t.flags&typeNotInHeap != 0 }
    func (t *Type) Noalg() bool      { return t.flags&typeNoalg != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

    import java.util.Map;
    import junit.framework.TestCase;
    
    /**
     * Test cases for {@link TypeToken}.
     *
     * @author Sven Mawson
     * @author Ben Yu
     */
    @AndroidIncompatible // lots of failures, possibly some related to bad equals() implementations?
    public class TypeTokenTest extends TestCase {
    
      private abstract static class StringList implements List<String> {}
    
      private abstract static class IntegerList implements List<Integer> {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    are generally of the form:
    
      func f(x *operand, e *syntax.Expr, ...)
    
    where e is the expression to be checked, and x is the result of the check.
    The check performed by f may fail in which case x.mode == invalid, and
    related error messages will have been issued by f.
    
    If a hint argument is present, it is the composite literal element type
    of an outer composite literal; it is used to type-check composite literal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    In this context, the terms _whitebox testing_ (module boundaries are deactivated or relaxed) and _blackbox testing_ (module boundaries are in place) are often used.
    Whitebox testing is used/needed for unit testing and blackbox testing fits functional or integration test requirements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	return &BindingInfo{pvc: pvc.DeepCopy(), pv: pv.DeepCopy()}
    }
    
    func addProvisionAnn(pvc *v1.PersistentVolumeClaim) *v1.PersistentVolumeClaim {
    	res := pvc.DeepCopy()
    	// Add provision related annotations
    	metav1.SetMetaDataAnnotation(&res.ObjectMeta, volume.AnnSelectedNode, nodeLabelValue)
    
    	return res
    }
    
    // reasonNames pretty-prints a list of reasons with variable names in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // matchExpressions is a list of label selector requirements. The requirements are ANDed.
      // +optional
      repeated LabelSelectorRequirement matchExpressions = 2;
    }
    
    // A label selector requirement is a selector that contains values, a key, and an operator that
    // relates the key and values.
    message LabelSelectorRequirement {
      // key is the label key that the selector applies to.
      // +patchMergeKey=key
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    			continue
    		}
    
    		p.unschedulablePods.delete(pInfo.Pod, pInfo.Gated)
    		queue := p.requeuePodViaQueueingHint(logger, pInfo, schedulingHint, event.Label)
    		logger.V(4).Info("Pod moved to an internal scheduling queue", "pod", klog.KObj(pInfo.Pod), "event", event.Label, "queue", queue, "hint", schedulingHint)
    		if queue == activeQ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top