Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for extr6 (4.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::sample[dir="snippets/configurationCache/projectAtExecutionFixed/groovy",files="build.gradle[tags=ad-hoc-task]"]
    ====
    <1> services can't be injected directly in scripts, we need an extra type to convey the injection point
    <2> create an instance of the extra type using `project.object` outside the task action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js.map

    constructor(element, config) {\n      this._config  = config\n      this._element = element\n\n      this._init()\n    }\n\n    // Public\n\n    fixLayoutHeight(extra = null) {\n      let control_sidebar = 0\n\n      if ($('body').hasClass(ClassName.CONTROL_SIDEBAR_SLIDE_OPEN) || $('body').hasClass(ClassName.CONTROL_SIDEBAR_OPEN) || extra == 'control_sidebar') {\n        control_sidebar = $(Selector.CONTROL_SIDEBAR_CONTENT).height()\n      }\n\n      const heights = {\n        window: $(window).height(),\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	lsym := sym.(*obj.LSym)
    	if lsym.Extra == nil {
    		return false
    	}
    	if _, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize && size == 4 {
    			return true // type hash field
    		}
    	}
    	return false
    }
    func fixed32(c *Config, sym Sym, off int64) int32 {
    	lsym := sym.(*obj.LSym)
    	if ti, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "extra": {
                "additionalProperties": {
                  "items": {
                    "default": "",
                    "type": "string"
                  },
                  "type": "array"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    				// to the variable declared in the initial SimpleStmt.
    				// Introduce extra scope to avoid redeclaration errors:
    				//
    				//	switch t := 0; t := x.(T) { ... }
    				//
    				// (this code is not valid Go because the first t
    				// cannot be accessed and thus is never used, the extra
    				// scope is needed for the correct error message).
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    			t.Logf("Listener accepted a connection from %s", lconn.RemoteAddr())
    			lconn.Close()
    		}
    		// Close any spurious extra connections from the listener. (This is
    		// possible if there are, for example, stray Dial calls from other tests.)
    		for extraConn := range acceptc {
    			t.Logf("spurious extra connection from %s", extraConn.RemoteAddr())
    			extraConn.Close()
    		}
    		if ok {
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "EXTRconst", argLength: 2, reg: gp21, asm: "EXTR", aux: "Int64"},   // extract 64 bits from arg0:arg1 starting at lsb auxInt, auxInt should be in the range 0 to 63.
    		{name: "EXTRWconst", argLength: 2, reg: gp21, asm: "EXTRW", aux: "Int64"}, // extract 32 bits from arg0[31:0]:arg1[31:0] starting at lsb auxInt and zero top 32 bits, auxInt should be in the range 0 to 31.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    		// See https://golang.org/issue/29098.
    		{"[google.com]:80", "google.com", "80"},
    		{"google.com]:80", "google.com]", "80"},
    		{"google.com:80_invalid_port", "google.com:80_invalid_port", ""},
    		{"[::1]extra]:80", "::1]extra", "80"},
    		{"google.com]extra:extra", "google.com]extra:extra", ""},
    	}
    	for _, tt := range tests {
    		u := &URL{Host: tt.in}
    		host, port := u.Hostname(), u.Port()
    		if host != tt.host {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    		has := int64(len(buf))
    		if has >= n {
    			return nil
    		}
    		if hasFull || n > size {
    			return io.ErrUnexpectedEOF
    		}
    		extra := n - has
    		if int64(cap(buf)) >= n {
    			// Extend since we have enough space.
    			buf = buf[:n]
    		} else {
    			buf = append(buf, make([]byte, extra)...)
    		}
    		_, err := io.ReadFull(r, buf[has:])
    		if err != nil {
    			if errors.Is(err, io.EOF) {
    				// Returned if we read nothing.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === Deprecated classes, methods and properties
    
    Follow the API links to learn how to deal with these deprecations (if no extra information is provided here):
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top