Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for satisfies (0.16 sec)

  1. src/go/printer/nodes.go

    		// print an empty line between top-level declarations.
    		// (because p.linebreak is called with the position of d, which
    		// is past any documentation, the minimum requirement is satisfied
    		// even w/o the extra getDoc(d) nil-check - leave it in case the
    		// linebreak logic improves - there's already a TODO).
    		if len(p.output) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    //  2. Remove the finalizers from the Pods if they completed or were removed
    //     or the job was removed.
    //  3. Increment job counters for pods that no longer have a finalizer.
    //  4. Add Complete condition if satisfied with current counters.
    //
    // It does this up to a limited number of Pods so that the size of .status
    // doesn't grow too much and this sync doesn't starve other Jobs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    // It evaluates if a pod can fit due to the resources it requests,
    // for both allocated and unallocated claims.
    //
    // For claims that are bound, then it checks that the node affinity is
    // satisfied by the given node.
    //
    // For claims that are unbound, it checks whether the claim might get allocated
    // for the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	// undefined.
    	if !st.Mode().IsRegular() {
    		file.Close()
    		return nil, errIsNotRegular
    	}
    
    	if st.Size() < offset+length {
    		// Expected size cannot be satisfied for
    		// requested offset and length
    		file.Close()
    		return nil, errFileCorrupt
    	}
    
    	if offset > 0 {
    		if _, err = file.Seek(offset, io.SeekStart); err != nil {
    			file.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	}
    	return nil
    }
    
    // tryCache is called just before the link attempt,
    // to see if the test result is cached and therefore the link is unneeded.
    // It reports whether the result can be satisfied from cache.
    func (c *runCache) tryCache(b *work.Builder, a *work.Action) bool {
    	return c.tryCacheWithID(b, a, a.Deps[0].BuildActionID())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    				// the problem — so we prefer the latter.
    				pkg.err = err
    			}
    
    			// err is nil, but we intentionally leave pkg.err non-nil and pkg.mod
    			// unset: we still haven't satisfied other invariants of a
    			// successfully-loaded package, such as scanning and loading the imports
    			// of that package. If we succeed in resolving the new dependency graph,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top