Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for satisfies (0.23 sec)

  1. src/math/big/float_test.go

    		}
    		// test inverse property
    		mant := new(Float)
    		if z.SetMantExp(mant, want.MantExp(mant)).Cmp(want) != 0 {
    			t.Errorf("Inverse property not satisfied: got %s; want %s", z.Text('g', 10), test.z)
    		}
    	}
    }
    
    func TestFloatPredicates(t *testing.T) {
    	for _, test := range []struct {
    		x            string
    		sign         int
    		signbit, inf bool
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// gcTriggerCycle indicates that a cycle should be started if
    	// we have not yet started cycle number gcTrigger.n (relative
    	// to work.cycles).
    	gcTriggerCycle
    )
    
    // test reports whether the trigger condition is satisfied, meaning
    // that the exit condition for the _GCoff phase has been met. The exit
    // condition should be tested when allocating.
    func (t gcTrigger) test() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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