Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for relabel (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // matchExpressions is a list of label selector requirements. The requirements are ANDed.
      // +optional
      // +listType=atomic
      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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          cluster_for_node_[node->id()].Get() = nullptr;
          continue;
        }
    
        // We want clusters to be big enough that the benefit from XLA's
        // optimizations offsets XLA related overhead (for instance we add some
        // Switch/Merge nodes into the graph to implement lazy compilation).  To
        // this end, we don't count Identity and Constant nodes because they do not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    // That is, s.heapBits()[0] holds the goarch.PtrSize*8 bits for the first
    // goarch.PtrSize*8 words from "start" through "start+63*ptrSize" in the span.
    // On a related note, small objects are always small enough that their bitmap
    // fits in goarch.PtrSize*8 bits, so writing out bitmap data takes two bitmap
    // writes at most (because object boundaries don't generally lie on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	proxier.filterRules.Write(
    		"-A", string(kubeForwardChain),
    		"-m", "comment", "--comment", `"kubernetes forwarding conntrack rule"`,
    		"-m", "conntrack",
    		"--ctstate", "RELATED,ESTABLISHED",
    		"-j", "ACCEPT",
    	)
    
    	// Add rule to accept traffic towards health check node port
    	proxier.filterRules.Write(
    		"-A", string(kubeNodePortChain),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Kube-scheduler implements scheduling hints for the InterPodAffinity plugin.
      The scheduling hints allow the scheduler to retry scheduling a Pod
      that was previously rejected by the InterPodAffinity plugin if create/delete/update a related Pod or a node which matches the pod affinity. ([#122471](https://github.com/kubernetes/kubernetes/pull/122471), [@nayihz](https://github.com/nayihz)) [SIG Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top