Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for maddld (0.27 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/links.go

    // If the index refers to a sequence of elements
    //
    //	[Plain("["), Plain_or_Code(text), Plain("]")]
    //
    // and the brackets are adjacent to the right kind of runes for a link, then
    // symbolLinkText returns the text of the middle element.
    // Otherwise it returns the empty string.
    func symbolLinkText(i int, ins []md.Inline) string {
    	// plainText returns the text of ins[j] if it is a Plain element, or "" otherwise.
    	plainText := func(j int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    //
    // (Note that this can be viewed equivalently as:
    //
    //	actionID(binary)/buildID(main.a)/contentID(binary)
    //
    // Storing the buildID(main.a) in the middle lets the computations that care
    // about the prefix or suffix halves ignore the middle and preserves the
    // original build ID as a contiguous string.)
    //
    // During the build, when it's time to build main.a, the gofmt binary has the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    	},
    
    	{
    		unescaped: strings.Repeat("padded/with+various%characters?that=need$some@escaping+paddedsowebreak/256bytes", 4),
    		query:     strings.Repeat("padded%2Fwith%2Bvarious%25characters%3Fthat%3Dneed%24some%40escaping%2Bpaddedsowebreak%2F256bytes", 4),
    		path:      strings.Repeat("padded%2Fwith+various%25characters%3Fthat=need$some@escaping+paddedsowebreak%2F256bytes", 4),
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    th.valign-top,
    td.valign-top {
    	vertical-align: top;
    }
    
    th.valign-bottom,
    td.valign-bottom {
    	vertical-align: bottom;
    }
    
    th.valign-middle,
    td.valign-middle {
    	vertical-align: middle;
    }
    
    table thead th,
    table tfoot th {
    	font-weight: bold;
    }
    
    tbody tr th {
    	display: table-cell;
    	line-height: 1.6;
    	background: var(--table-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/ppc64.s

    	REMU R3, R4, R5                 // 7fe41b967fff19d67bff00287cbf2050
    	REMD R3, R4, R5                 // 7fe41bd27fff19d27cbf2050
    	REMDU R3, R4, R5                // 7fe41b927fff19d27cbf2050
    
    	MADDHD R3,R4,R5,R6              // 10c32170
    	MADDHDU R3,R4,R5,R6             // 10c32171
    
    	MODUD R3, R4, R5                // 7ca41a12
    	MODUW R3, R4, R5                // 7ca41a16
    	MODSD R3, R4, R5                // 7ca41e12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/templates/productpage.html

              <h4 class="text-3xl font-semibold">Book Details</h4>
              <div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
                <div class="inline-block min-w-full py-2 align-middle sm:px-6 lg:px-8">
                  <table class="min-w-full divide-y divide-gray-300">
                    <thead>
                      <tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// and a variable number of input values in the middle.
    	// They produce a variable number of result values.
    	// These values are not necessarily "SSA-able"; they can be too large,
    	// but in that case inputs are loaded immediately before with OpDereference,
    	// and outputs are stored immediately with OpStore.
    	//
    	// After call expansion, Calls have the same fixed-middle-memory arrangement of inputs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/syscall/syscall_darwin.go

    		}
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    		}
    		// Copy entry into return buffer.
    		copy(buf, unsafe.Slice((*byte)(unsafe.Pointer(&entry)), reclen))
    		buf = buf[reclen:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            ResolveResult(symbol = this, receiverClassReference)
    
        /**
         * Resolves the [selectedFqName] of KDoc
         *
         * To properly resolve qualifier parts in the middle,
         * we need to resolve the whole qualifier to understand which parts of the qualifier are package or class qualifiers.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. cmd/metrics.go

    				// we do not have to log this.
    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    // NoAuthMiddleware no auth middle ware.
    func NoAuthMiddleware(h http.Handler) http.Handler {
    	return h
    }
    
    // AuthMiddleware checks if the bearer token is valid and authorized.
    func AuthMiddleware(h http.Handler) http.Handler {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top