Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,899 for ctype (0.02 sec)

  1. src/main/java/org/codelibs/core/lang/ClassUtil.java

            primitiveNameToClassMap.put(Integer.TYPE.getName(), Integer.TYPE);
            primitiveNameToClassMap.put(Long.TYPE.getName(), Long.TYPE);
            primitiveNameToClassMap.put(Float.TYPE.getName(), Float.TYPE);
            primitiveNameToClassMap.put(Double.TYPE.getName(), Double.TYPE);
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java

         *
         * @param netName the network name of the share
         * @param type the type of the share
         * @param remark the optional comment or description for the share
         */
        public SmbShareInfo(final String netName, final int type, final String remark) {
            this.netName = netName;
            this.type = type;
            this.remark = remark;
        }
    
        @Override
        public String getName() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  3. docs/pt/docs/python-types.md

    O Python possui suporte para "dicas de tipo" ou "type hints" (também chamado de "anotações de tipo" ou "type annotations")
    
    Esses **"type hints"** são uma sintaxe especial que permite declarar o <abbr title = "por exemplo: str, int, float, bool">tipo</abbr> de uma variável.
    
    Ao declarar tipos para suas variáveis, editores e ferramentas podem oferecer um melhor suporte.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 10:32:53 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        // Authentication Type Constants
        // ============================================================
    
        /** Basic authentication type identifier. */
        public static final String BASIC = "BASIC";
    
        /** Digest authentication type identifier. */
        public static final String DIGEST = "DIGEST";
    
        /** NTLM authentication type identifier. */
        public static final String NTLM = "NTLM";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/mdo/paramdoc.mdo

              <type>String</type>
            </field>
            <field>
              <version>1.0.0</version>
              <name>cliOptions</name>
              <description>The command-line switches used to change the value of this expression.</description>
              <type>Properties</type>
              <association xml.mapStyle="explode">
                <type>String</type>
                <multiplicity>*</multiplicity>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/av/AvPair.java

         */
        public static final int MsvAvTargetName = 0x09;
    
        /**
         * Channel bindings type
         */
        public static final int MsvAvChannelBindings = 0x0A;
    
        private final int type;
        private final byte[] raw;
    
        /**
         * Constructs an AV pair with type and raw data
         * @param type the AV pair type
         * @param raw the raw data bytes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/index.jsp

    		</main>
    		<jsp:include page="footer.jsp" />
    	</la:form>
    	<input type="hidden" id="contextPath" value="${contextPath}" />
    	<script type="text/javascript" src="${fe:url('/js/jquery-3.7.1.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/popper.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 7K bytes
    - Viewed (1)
  8. docs/em/docs/advanced/additional-responses.md

                            "type": "string"
                        },
                        "type": {
                            "title": "Error Type",
                            "type": "string"
                        }
                    }
                },
                "HTTPValidationError": {
                    "title": "HTTPValidationError",
                    "type": "object",
                    "properties": {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ParametricNullness.java

     *       String}.
     * </ul>
     *
     * This is the same behavior as type-variable usages have to Kotlin and to the Checker Framework.
     * Contrast the method above to:
     *
     * <ul>
     *   <li>methods whose return type is a type variable but which can never return {@code null},
     *       typically because the type forbids nullable type arguments: For example, {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 16:20:21 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. compat/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java

            artifact = new DefaultArtifact(groupId, artifactId, versionRange, scope, type, null, artifactHandler);
            assertEquals(groupId + ":" + artifactId + ":" + type, artifact.getDependencyConflictId());
        }
    
        @Test
        void testGetDependencyConflictIdNullScope() {
            artifact.setScope(null);
            assertEquals(groupId + ":" + artifactId + ":" + type + ":" + classifier, artifact.getDependencyConflictId());
        }
    
        @Test
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top