Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 119 for srcLen (0.1 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

        font-size: .95rem;
        font-weight: 600;
        line-height: 1.5;
        margin: 1.5em 0 0;
    }
    
    @media screen and (min-width: 45rem) {
        .main-content {
            display: flex;
            justify-content: center;
        }
    }
    
    /* User guide navigation appears for desktops */
    @media screen and (min-width: 64rem) {
        .docs-navigation {
            display: block;
            flex: 0 0 auto;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGZERO
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS32
    			if top == nil {
    				top = p
    			}
    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGTMP
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS33
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

     *
     * <li>If running under a terminal, and the operation has a status defined, that status is shown in the 'status bar' at the bottom of the screen.</li>
     *
     * <li>If running under a terminal, and the operation has a short description and no status defined, the short description is shown in the 'status bar' at the bottom of the screen.</li>
     *
     * </ul>
     *
     */
    public interface ProgressLogger {
        /**
         * Returns the description of the operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/runtime/memmove_arm64.s

    #include "textflag.h"
    
    // See memmove Go doc for important implementation constraints.
    
    // Register map
    //
    // dstin  R0
    // src    R1
    // count  R2
    // dst    R3 (same as R0, but gets modified in unaligned cases)
    // srcend R4
    // dstend R5
    // data   R6-R17
    // tmp1   R14
    
    // Copies are split into 3 main cases: small copies of up to 32 bytes, medium
    // copies of up to 128 bytes, and large copies. The overhead of the overlap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	border-collapse: collapse;
    	border-spacing: 0;
    }
    
    meta.foundation-mq-small {
    	font-family: "only screen and (min-width: 768px)";
    	width: 768px;
    }
    
    meta.foundation-mq-medium {
    	font-family: "only screen and (min-width:1280px)";
    	width: 1280px;
    }
    
    meta.foundation-mq-large {
    	font-family: "only screen and (min-width:1440px)";
    	width: 1440px;
    }
    
    *,
    *:before,
    *:after {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ConsoleLayoutCalculator.java

         */
        public int calculateNumWorkersForConsoleDisplay(int ideal) {
            if (maximumAvailableLines == -1) {
                // Disallow work-in-progress to take up more than half of the console display
                // If the screen size is unknown, allow 4 lines
                int rows = consoleMetaData.getRows();
                maximumAvailableLines = rows == 0 ? 4 : rows / 2;
            }
    
            return Math.min(ideal, maximumAvailableLines);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

        }
    }
    @media screen and (max-width: 400px) {
        .about-language {
            font-size: 10px;
            padding-right: 12px;
        }
    }
    @media screen and (max-width: 400px) {
        .nav-list-search {
            width: 94%;
        }
        #search-input, #page-search-input {
            width: 70%;
        }
    }
    @media screen and (max-width: 320px) {
        .nav-list-search > label {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

     * <pre>
     * DestBean destBean = copyBeanToNewBean(srcBean, DestBean.class);
     * DestBean destBean = copyMapToNewBean(srcMap, DestBean.class);
     * Map&lt;String, Object&gt; destMap = copyBeanToNewMap(srcBean);
     * </pre>
     * <p>
     * コピーする際のオプションを指定することも出来ます。
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.beans.util.CopyOptionsUtil.*;
     *
     * copyBeanToBean(srcBean, destBean, excludeNull());
     * </pre>
     * <p>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. JavadocStyleGuide.md

    # Gradle Javadoc Style Guide
    
    ## 1.1 Formatting
    
    ### 1.1.1 General form
    
    The basic formatting of Javadoc blocks is as seen in this example:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     * <p>
     * The url argument must specify an absolute {@link URL}. 
     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/crypto/aes/asm_s390x.s

    	XOR	R7, R8
    	MOVB	R8, 0(R1)(R5*1)
    	LAY	1(R5), R5
    	SUB	$1, R4
    	BR	tail
    done:
    	RET
    
    // func cryptBlocksGCM(fn code, key, dst, src, buf []byte, cnt *[16]byte)
    TEXT ·cryptBlocksGCM(SB),NOSPLIT,$0-112
    	MOVD	src_len+64(FP), R0
    	MOVD	buf_base+80(FP), R1
    	MOVD	cnt+104(FP), R12
    	LMG	(R12), R2, R3
    
    	// Check that the src size is less than or equal to the buffer size.
    	MOVD	buf_len+88(FP), R4
    	CMP	R0, R4
    	BGT	crash
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top