Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for squarify (0.29 sec)

  1. src/cmd/compile/internal/typecheck/subr.go

    // A dlist stores a pointer to a TFIELD Type embedded within
    // a TSTRUCT or TINTER Type.
    type dlist struct {
    	field *types.Field
    }
    
    // dotpath computes the unique shortest explicit selector path to fully qualify
    // a selection expression x.f, where x is of type t and f is the symbol s.
    // If no such path exists, dotpath returns nil.
    // If there are multiple shortest paths to the same depth, ambig is true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    This means that any version defined in the `<dependencyManagement>` block can impact the dependency resolution result.
    In order to qualify as a BOM, a `.pom` file needs to have `<packaging>pom</packaging>` set.
    
    However often BOMs are not only providing versions as recommendations, but also a way to override any other version found in the graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&sqsupset;":                        "\u2290",
    	"&sqsupseteq;":                      "\u2292",
    	"&squ;":                             "\u25a1",
    	"&square;":                          "\u25a1",
    	"&squarf;":                          "\u25aa",
    	"&squf;":                            "\u25aa",
    	"&srarr;":                           "\u2192",
    	"&sscr;":                            "\U0001d4c8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/html/entity.go

    		"sqsupset;":                        '\U00002290',
    		"sqsupseteq;":                      '\U00002292',
    		"squ;":                             '\U000025A1',
    		"square;":                          '\U000025A1',
    		"squarf;":                          '\U000025AA',
    		"squf;":                            '\U000025AA',
    		"srarr;":                           '\U00002192',
    		"sscr;":                            '\U0001D4C8',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  6. 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)
  7. LICENSE

    licenses of parties who have received copies or rights from you under
    this License.  If your rights have been terminated and not permanently
    reinstated, you do not qualify to receive new licenses for the same
    material under section 10.
    
      9. Acceptance Not Required for Having Copies.
    
      You are not required to accept this License in order to receive or
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?Ru:fu,a=Xo.ns.qualify(n);return Po(this,"attr."+n,t,a.local?i:u)},Ns.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))}}var u=Xo.ns.qualify(n);return this.tween("attr."+n,u.local?r:e)},Ns.style=function(n,t,e){function...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.6.md

    * `v1beta1` RoleBinding/ClusterRoleBinding subjects changed `apiVersion` to `apiGroup` to fully-qualify a subject. ServiceAccount subjects default to an apiGroup of `""`, User and Group subjects default to an apiGroup of `"rbac.authorization.k8s.io"`. ([#41184](https://github.com/kubernetes/kubernetes/pull/41184), [@liggitt](https://github.com/liggitt))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K 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