Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 186 for endPod (0.21 sec)

  1. settings.gradle.kts

                    throw IllegalArgumentException("Could not locate the generated diagram in $markdownFile")
                }
                val endPos = content.subList(markerPos, content.size).indexOfFirst { it.contains(endDiagram) && !it.contains(startDiagram) }
                if (endPos < 0) {
                    throw IllegalArgumentException("Could not locate the end of the generated diagram in $markdownFile")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/topology_hints.go

    func (m *ManagerImpl) GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    	// Garbage collect any stranded device resources before providing TopologyHints
    	m.UpdateAllocatedDevices()
    
    	// Loop through all device resources and generate TopologyHints for them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/error.go

    		return true
    	default:
    		return false
    	}
    }
    
    // errInterrupted
    type errInterrupted struct {
    	cause error
    }
    
    // ErrorInterrupted returns an error that indicates the wait was ended
    // early for a given reason. If no cause is provided a generic error
    // will be used but callers are encouraged to provide a real cause for
    // clarity in debugging.
    func ErrorInterrupted(cause error) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginVariantResolveIntegrationTest.groovy

                   // because this is this variant which causes the problem: because there's
                   // a mismatch on the Java version for the other variants, this one ended up
                   // being selected!
                   withSourcesJar()
                }
    
                $publishConfig
            """
    
            file('my-plugin/src/main/java/com/acme/MyPlugin.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:51:28 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	return nil
    }
    
    func (m *manager) Allocate(p *v1.Pod, c *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(p)
    
    	// Garbage collect any stranded resources before allocating CPUs.
    	m.removeStaleState()
    
    	m.Lock()
    	defer m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  6. src/cmd/go/internal/modindex/build.go

    			// Note that ended==false here means that inSlashStar==false,
    			// since seeing a /* would have set ended==true.
    			end = len(content) - len(p)
    			continue Lines
    		}
    		if !bytes.HasPrefix(line, slashSlash) { // Not comment line
    			ended = true
    		}
    
    		if !inSlashStar && isGoBuildComment(line) {
    			if goBuild != nil {
    				return nil, nil, false, errMultipleGoBuild
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_network_linux.go

    		// creates a security hole (https://issue.k8s.io/90259) which this
    		// iptables rule mitigates. This rule should have been added to
    		// kube-proxy, but it mistakenly ended up in kubelet instead, and we are
    		// keeping it in kubelet for now in case other third-party components
    		// depend on it.
    		if _, err := iptClient.EnsureRule(utiliptables.Append, utiliptables.TableFilter, KubeFirewallChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 20:51:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

          if (position.index != 0) {
            // Something was parsed. It's possible the entire string was not consumed but we ignore
            // that. If any of the BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS ended in "'GMT'" we'd have
            // to also check that position.getIndex() == value.length() otherwise parsing might have
            // terminated early, ignoring things like "+01:00". Leaving this as != 0 means that any
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/memorymanager/memory_manager.go

    func (m *manager) Allocate(pod *v1.Pod, container *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    	// Garbage collect any stranded resources before allocation
    	m.removeStaleState()
    
    	m.Lock()
    	defer m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/io/LineBuffer.java

       * @throws IOException if an I/O error occurs
       * @see #finish
       */
      protected void add(char[] cbuf, int off, int len) throws IOException {
        int pos = off;
        if (sawReturn && len > 0) {
          // Last call to add ended with a CR; we can handle the line now.
          if (finishLine(cbuf[pos] == '\n')) {
            pos++;
          }
        }
    
        int start = pos;
        for (int end = off + len; pos < end; pos++) {
          switch (cbuf[pos]) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top