Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for squarify (0.42 sec)

  1. src/cmd/compile/internal/types2/format.go

    // dump is only needed for debugging
    func (check *Checker) dump(format string, args ...any) {
    	fmt.Println(sprintf(check.qualifier, true, format, args...))
    }
    
    func (check *Checker) qualifier(pkg *Package) string {
    	// Qualify the package unless it's the package being type-checked.
    	if pkg != check.pkg {
    		if check.pkgPathMap == nil {
    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/go/types/format.go

    func (check *Checker) dump(format string, args ...any) {
    	fmt.Println(sprintf(check.fset, check.qualifier, true, format, args...))
    }
    
    func (check *Checker) qualifier(pkg *Package) string {
    	// Qualify the package unless it's the package being type-checked.
    	if pkg != check.pkg {
    		if check.pkgPathMap == nil {
    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

                    We shouldn't use jdk.internal types.
                    
                    com.beust and org.testng.collections has classes that look like Guava.
    
                    We prefer to import javax.annotation and fully-qualify references to org.jetbrains.annotations.
                -->
                <property name="illegalPkgs" value="jdk.internal,com.beust,org.testng.collections,org.jetbrains.annotations"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/issues0.go

    	_ = x.f /* ERROR "ambiguous selector x.f" */
    }
    
    func issue26234c() {
    	T.x /* ERROR "T.x undefined (type T has no method x)" */ ()
    }
    
    func issue35895() {
    	// T is defined in this package, don't qualify its name with the package name.
    	var _ T = 0 // ERROR "cannot use 0 (untyped int constant) as T"
    
    	// There is only one package with name syntax imported, only use the (global) package name in error messages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/log/slog/doc.go

    Now the program can change its logging level with a single statement:
    
    	programLevel.Set(slog.LevelDebug)
    
    # Groups
    
    Attributes can be collected into groups.
    A group has a name that is used to qualify the names of its attributes.
    How this qualification is displayed depends on the handler.
    [TextHandler] separates the group and attribute names with a dot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

                .reduce((a, b) -> isPrefix(a.getKey(), b.getKey())
                    ? b
                    : a
                );
            // If there is an ancestor, then we use it to qualify the path of the build we are adding
            Path requestedPath = parentBuild.map(
                entry -> entry.getValue().getIdentityPath().append(Path.path(name))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_generic.go

    	*v = Element{rr0, rr1, rr2, rr3, rr4}
    	v.carryPropagate()
    }
    
    func feSquareGeneric(v, a *Element) {
    	l0 := a.l0
    	l1 := a.l1
    	l2 := a.l2
    	l3 := a.l3
    	l4 := a.l4
    
    	// Squaring works precisely like multiplication above, but thanks to its
    	// symmetry we get to group a few terms together.
    	//
    	//                          l4   l3   l2   l1   l0  x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/fmt.go

    		}
    
    		if s != nil {
    			if isParam {
    				name = fmt.Sprint(f.Nname)
    			} else if verb == 'L' {
    				name = s.Name
    				if !IsExported(name) && mode != fmtTypeIDName {
    					name = sconv(s, 0, mode) // qualify non-exported names (used on structs, not on funarg)
    				}
    			} else {
    				name = sconv(s, 0, mode)
    			}
    		}
    	}
    
    	if name != "" {
    		b.WriteString(name)
    		b.WriteString(nameSep)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. src/math/big/ratconv.go

    	var q nat
    	p2 := d.trailingZeroBits()
    	q = q.shr(d, p2)
    
    	// Determine p5 by counting factors of 5.
    	// Build a table starting with an initial power of 5,
    	// and use repeated squaring until the factor doesn't
    	// divide q anymore. Then use the table to determine
    	// the power of 5 in q.
    	const fp = 13        // f == 5^fp
    	var tab []nat        // tab[i] == (5^fp)^(2^i) == 5^(fp·2^i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. cmd/bucket-replication-handlers.go

    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    }
    
    // ResetBucketReplicationStartHandler - starts a replication reset for all objects in a bucket which
    // qualify for replication and re-sync the object(s) to target, provided ExistingObjectReplication is
    // enabled for the qualifying rule. This API is a MinIO only extension provided for situations where
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top