Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,441 for told (0.05 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //
    //	if (exception) {
    //	  15..4  unsigned exception index
    //	} else {
    //	  15..8  XOR pattern or index to XOR pattern for case mapping
    //	         Only 13..8 are used for XOR patterns.
    //	      7  inverseFold (fold to upper, not to lower)
    //	      6  index: interpret the XOR pattern as an index
    //	         or isMid if case mode is cIgnorableUncased.
    //	   5..4  CCC: zero (normal or break), above or other
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_s390x.s

    #define CONST_R4R3              V11
    #define CONST_R5                V12
    #define CONST_RU_POLY           V13
    #define CONST_CRC_POLY          V14
    
    
    // The CRC-32 constant block contains reduction constants to fold and
    // process particular chunks of the input data stream in parallel.
    //
    // Note that the constant definitions below are extended in order to compute
    // intermediate results with a single VECTOR GALOIS FIELD MULTIPLY instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/error/admin_error.jsp

    <head>
        <meta charset="UTF-8">
        <title><<la:message ke="labels.admin_brand_title"/> | <<la:message ke="labels.error_title"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/eclipse/model/customProject.xml

        <buildSpec>
            <buildCommand>
                <name>org.eclipse.jdt.core.scalabuilder</name>
                <arguments>
                    <dictionary>
                        <key>climate</key>
                        <value>cold</value>
                    </dictionary>
                </arguments>
            </buildCommand>
        </buildSpec>
        <natures>
            <nature>org.eclipse.jdt.core.scalanature</nature>
        </natures>
        <linkedResources>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4518.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4518. In some circumstances "return F(...)"
    // where F has multiple returns is miscompiled by 6g due to
    // bold assumptions in componentgen.
    
    package main
    
    //go:noinline
    func F(e interface{}) (int, int) {
    	return 3, 7
    }
    
    //go:noinline
    func G() (int, int) {
    	return 3, 7
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 942 bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java

        }
    
        private String getModelId() {
            return ModelProblemUtils.toId(sourceModel);
        }
    
        public void setRootModel(Model rootModel) {
            this.rootModel = rootModel;
        }
    
        public Model getRootModel() {
            return rootModel;
        }
    
        public String getRootModelId() {
            return ModelProblemUtils.toId(rootModel);
        }
    
        public void add(ModelProblem problem) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/ne.css

        }
        a.sort {
            display: block;
            float: left;
            width: 100px;
            height: 15px;
            font-family: Verdana, sans-serif;
            font-size: 8pt;
            font-weight: bold;
            text-decoration: none;
            color: #000000;
            background-color: #d0d0d0;
            border-top-color: #ffffff;
            border-bottom-color: #707070;
            border-right-color: #707070;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_ppc64x.s

    #endif
    
    	// Set CR{1,2,3}EQ to hold the key size information.
    	CMPU	R6, $10, CR1
    	CMPU	R6, $12, CR2
    	CMPU	R6, $14, CR3
    
    	MOVD	$16, R6
    	MOVD	$32, R7
    	MOVD	$48, R8
    	MOVD	$64, R9
    	MOVD	$80, R10
    	MOVD	$96, R11
    	MOVD	$112, R12
    
    	// Load text in BE order
    	P8_LXVB16X(R4, R0, V0)
    
    	// V1, V2 will hold keys, V0 is a temp.
    	// At completion, V2 will hold the ciphertext.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue50276.go

    type transform[T any] struct{}
    type pair[S any] struct {}
    
    var _ transform[step]
    
    type box transform[step]
    type step = pair[box]
    
    // test case from issue
    
    type Transform[T any] struct{ hold T }
    type Pair[S, T any] struct {
    	First  S
    	Second T
    }
    
    var first Transform[Step]
    
    // This line doesn't use the Step alias, and it compiles fine if you uncomment it.
    var second Transform[Pair[Box, interface{}]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 880 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

            // Important that the launchables are unpacked on the client side, to avoid sending back any additional internal state that
            // the launchable may hold onto. For example, GradleTask implementations hold onto every task for every project in the build
            List<TaskExecutionRequest> requests = new ArrayList<TaskExecutionRequest>(launchables.size());
            for (InternalLaunchable launchable : launchables) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top