Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for Guess (0.04 sec)

  1. src/math/big/sqrt.go

    //
    //	1/t² - x = 0
    //
    // for t (using Newton's method), and then inverting.
    func (z *Float) sqrtInverse(x *Float) {
    	// let
    	//   f(t) = 1/t² - x
    	// then
    	//   g(t) = f(t)/f'(t) = -½t(1 - xt²)
    	// and the next guess is given by
    	//   t2 = t - g(t) = ½t(3 - xt²)
    	u := newFloat(z.prec)
    	v := newFloat(z.prec)
    	three := three()
    	ng := func(t *Float) *Float {
    		u.prec = t.prec
    		v.prec = t.prec
    		u.Mul(t, t)     // u = t²
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/recognizer/recognizer.go

    	// provides) and may return unknown if the data provided is not sufficient to make a
    	// a determination. When peek returns EOF that may mean the end of the input or the
    	// end of buffered input - recognizers should return the best guess at that time.
    	RecognizesData(peek []byte) (ok, unknown bool, err error)
    }
    
    // NewDecoder creates a decoder that will attempt multiple decoders in an order defined
    // by:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. pkg/registry/core/service/portallocator/operation.go

    func (op *PortAllocationOperation) AllocateNext() (int, error) {
    	if op.dryRun {
    		// Find the max element of the allocated ports array.
    		// If no ports are already being allocated by this operation,
    		// then choose a sensible guess for a dummy port number
    		var lastPort int
    		for _, allocatedPort := range op.allocated {
    			if allocatedPort > lastPort {
    				lastPort = allocatedPort
    			}
    		}
    		if len(op.allocated) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    // and parses it out into both possibilities.  This code takes no responsibility for knowing which representation was intended
    // but with a knowledge of all GroupVersions, calling code can take a very good guess.  If there are only two segments, then
    // `*GroupVersionResource` is nil.
    // `resource.group.com` -> `group=com, version=group, resource=resource` and `group=group.com, resource=resource`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. src/html/template/attr.go

    	"value":       contentTypeUnsafe,
    	"width":       contentTypePlain,
    	"wrap":        contentTypePlain,
    	"xmlns":       contentTypeURL,
    }
    
    // attrType returns a conservative (upper-bound on authority) guess at the
    // type of the lowercase named attribute.
    func attrType(name string) contentType {
    	if strings.HasPrefix(name, "data-") {
    		// Strip data- so that custom attribute heuristics below are
    		// widely applied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/UniAddress.java

        }
    /*
        public boolean equals( Object obj ) {
            return obj instanceof UniAddress && addr.hashCode() == obj.hashCode();
        }
    */
    
        /**
         * Guess first called name to try for session establishment. This
         * method is used exclusively by the <tt>jcifs.smb1.smb1</tt> package.
         */
    
        public String firstCalledName() {
            if( addr instanceof NbtAddress ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  7. src/archive/tar/format.go

    func (b *block) toSparse() sparseArray { return sparseArray(b[:]) }
    
    // getFormat checks that the block is a valid tar header based on the checksum.
    // It then attempts to guess the specific format based on magic values.
    // If the checksum fails, then FormatUnknown is returned.
    func (b *block) getFormat() Format {
    	// Verify checksum.
    	var p parser
    	value := p.parseOctal(b.toV7().chksum())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

                boolean result = !new File("foo").equals(new File("FOO"));
                LOGGER.info("Failed to determine if file system is case sensitive. Best guess is '{}'.", result);
                return result;
            }
        }
    
        private boolean hasContent(File file, String content) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. cmd/generic-handlers_test.go

    	"net/http/httptest"
    	"net/url"
    	"strconv"
    	"testing"
    
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/grid"
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    // Tests request guess function for net/rpc requests.
    func TestGuessIsRPC(t *testing.T) {
    	if guessIsRPCReq(nil) {
    		t.Fatal("Unexpected return for nil request")
    	}
    
    	u, err := url.Parse("http://localhost:9000/minio/lock")
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			// improvement here would be to somehow get a count the number of expressions in the regex or
    			// how many states are in the regex state machine and use that to measure regex cost).
    			// For now, we're making a guess that each expression in a regex is typically at least 4 chars
    			// in length.
    			regexCost := uint64(math.Ceil(float64(actualSize(args[1])) * common.RegexStringLengthCostFactor))
    			cost := strCost * regexCost
    			return &cost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top