Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for squarify (0.14 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. 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)
  4. 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)
  5. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    in a commercial product offering. The obligations in this section do not
    apply to any claims or Losses relating to any actual or alleged
    intellectual property infringement. In order to qualify, an Indemnified
    Contributor must: a) promptly notify the Commercial Contributor in
    writing of such claim, and b) allow the Commercial Contributor to control,
    and cooperate with the Commercial Contributor in, the defense and any
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/object.go

    		typ = nil
    
    	case *Nil:
    		buf.WriteString("nil")
    		return
    
    	default:
    		panic(fmt.Sprintf("writeObject(%T)", obj))
    	}
    
    	buf.WriteByte(' ')
    
    	// For package-level objects, qualify the name.
    	if obj.Pkg() != nil && obj.Pkg().scope.Lookup(obj.Name()) == obj {
    		buf.WriteString(packagePrefix(obj.Pkg(), qf))
    	}
    	buf.WriteString(obj.Name())
    
    	if typ == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. src/go/types/object.go

    		typ = nil
    
    	case *Nil:
    		buf.WriteString("nil")
    		return
    
    	default:
    		panic(fmt.Sprintf("writeObject(%T)", obj))
    	}
    
    	buf.WriteByte(' ')
    
    	// For package-level objects, qualify the name.
    	if obj.Pkg() != nil && obj.Pkg().scope.Lookup(obj.Name()) == obj {
    		buf.WriteString(packagePrefix(obj.Pkg(), qf))
    	}
    	buf.WriteString(obj.Name())
    
    	if typ == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/encoding/gob/type.go

    func Register(value any) {
    	// Default to printed representation for unnamed types
    	rt := reflect.TypeOf(value)
    	name := rt.String()
    
    	// But for named types (or pointers to them), qualify with import path (but see inner comment).
    	// Dereference one pointer looking for a named type.
    	star := ""
    	if rt.Name() == "" {
    		if pt := rt; pt.Kind() == reflect.Pointer {
    			star = "*"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "obj-1",
    			objectModTime:  time.Now().UTC().Add(-90 * 24 * time.Hour),
    			isDelMarker:    true,
    			expectedAction: DelMarkerDeleteAllVersionsAction,
    		},
    		{
    			// NoneAction since object doesn't qualify for DelMarkerExpiration yet.
    			// Note: TransitionAction doesn't apply to DEL marker
    			inputConfig: `<LifecycleConfiguration>
                                <Rule>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Instead, Gradle will throw the underlying `MissingMethodException`.
    To mitigate this change, consider the following solutions:
    
    ```groovy
    configurations {
        conf.incoming.afterResolve {
            // Fully qualify the reference.
            project.distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    ```
    
    ```groovy
    configurations {
        conf
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top