Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for Headless (0.14 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    	pod.Spec.Hostname = pod.Name
    	pod.Spec.Subdomain = set.Spec.ServiceName
    }
    
    // updateIdentity updates pod's name, hostname, and subdomain, and StatefulSetPodNameLabel to conform to set's name
    // and headless service.
    func updateIdentity(set *apps.StatefulSet, pod *v1.Pod) {
    	ordinal := getOrdinal(pod)
    	pod.Name = getPodName(set, ordinal)
    	pod.Namespace = set.Namespace
    	if pod.Labels == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. pkg/dns/client/dns.go

    		// requests for A and AAAA may get NXDOMAIN for AAAA and treat the entire thing as a NXDOMAIN
    		response.Answer = answers
    		// Randomize the responses; this ensures for things like headless services we can do DNS-LB
    		// This matches standard kube-dns behavior. We only do this for cached responses as the
    		// upstream DNS server would already round robin if desired.
    		if len(answers) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    transformations will operate on.
    
    We make use of two different dialects to model TensorFlow graphs in MLIR: first
    the `tf_executor` dialect that represents the execution model of the TensorFlow
    executor (e.g. control dependencies, deadness propagation) and the `tf` dialect
    which represent the regular operations in a TensorFlow graph (the ones that
    don’t have special contract with the executor).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

            }
        }
    
        private String getMessage(String message, Throwable exception) {
            String fullMessage = (message != null) ? message : "";
    
            // To break out of possible endless loop when getCause returns "this", or dejaVu for n-level recursion (n>1)
            Set<Throwable> dejaVu = Collections.newSetFromMap(new IdentityHashMap<>());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. docs/en/data/external_links.yml

    oor.io/series/fastapi-react-poll-app title: Building the Poll App From Django Tutorial With FastAPI And React - author: Silvan Melchior author_link: https://github.com/silvanmelchior link: https://blog.devgenius.io/seamless-fastapi-configuration-with-confz-90949c14ea12 title: Seamless FastAPI Configuration with ConfZ - author: Kaustubh Gupta author_link: https://medium.com/@kaustubhgupta1828/ link: https://levelup.gitconnected.com/5-advance-features-of-fastapi-you-should-try-7c0ac7eebb3e title: 5...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * This class keeps track of all objects being evaluated at the moment.
     * It helps to provide nicer error messages when the evaluation enters an endless cycle (A obtains a value of B which obtains a value of A).
     * <p>
     * Concurrent evaluation of same objects by multiple threads is still allowed.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.h

        // auto-clustering stateful RNG ops.
        bool allow_stateful_rng_ops = false;
    
        // TODO(b/118970344): Whether ControlTrigger ops are allowed.  It is unsound
        // to cluster ControlTrigger because of how we use deadness analysis.
        bool allow_control_trigger = false;
    
        // Whether it is okay to "cluster" Assert and CheckNumerics by simply
        // removing them (they're not removed during clustering, but their
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller.go

    // If the cluster is removed, the T.Close() method will be called.
    // Constructors MUST not do blocking IO; they will block other operations.
    // During a cluster update, a new component is constructed before the old one is removed for seamless migration.
    func BuildMultiClusterComponent[T ComponentConstraint](c ComponentBuilder, constructor func(cluster *Cluster) T) *Component[T] {
    	comp := &Component[T]{
    		constructor: constructor,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/flags.h

      // eligible for clustering.
      int64_t tf_xla_clustering_fuel;
    
      // If tf_xla_disable_deadness_safety_checks_for_debugging is set to true then
      // we do not do deadness related safety checks.  This is unsound in general,
      // but can be used as a debugging aid.
      bool tf_xla_disable_deadness_safety_checks_for_debugging;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/recycle_test.go

    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestRecycleMultiSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	tests := []controllerTest{
    		{
    			// recycle failure - recycle returns error. The controller should
    			// try again.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top