Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for relabel (1.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/go/build/build.go

    		// return the same error that 'go list' reported.
    		return errors.New(errStr)
    	}
    
    	// If 'go list' did locate the package, ignore the error.
    	// It was probably related to loading source files, and we'll
    	// encounter it ourselves shortly if the FindOnly flag isn't set.
    	p.Dir = dir
    	p.ImportPath = f[1]
    	p.Root = f[2]
    	p.Goroot = f[3] == "true"
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	b.msg = append(b.msg, hb[:]...)
    	b.section = sectionHeader
    	return b
    }
    
    // EnableCompression enables compression in the Builder.
    //
    // Leaving compression disabled avoids compression related allocations, but can
    // result in larger message sizes. Be careful with this mode as it can cause
    // messages to exceed the UDP size limit.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top