Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1351 - 1360 of 3,156 for trying (0.05 sec)

  1. tests/test_tutorial/test_body_nested_models/test_tutorial001_tutorial002_tutorial003.py

                                "items": {
                                    "anyOf": [{"type": "string"}, {"type": "integer"}]
                                },
                            },
                            "msg": {"title": "Message", "type": "string"},
                            "type": {"title": "Error Type", "type": "string"},
                        },
                    },
                    "HTTPValidationError": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

         */
        /**
         * Returns a string representation of this SID suitable for display to users.
         *
         * @return display string representation of the SID
         */
        public String toDisplayString() {
            if (origin_server != null) {
                resolveWeak();
            }
            if (domainName != null) {
                String str;
    
                if (type == SID_TYPE_DOMAIN) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmServiceTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    
    public class DefaultChecksumAlgorithmServiceTest {
        private static Map<String, ChecksumAlgorithmFactory> getChecksumAlgorithmFactories() {
            HashMap<String, ChecksumAlgorithmFactory> result = new HashMap<>();
            result.put(Sha512ChecksumAlgorithmFactory.NAME, new Sha512ChecksumAlgorithmFactory());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 11:31:00 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java

      //  - For example, the "SHA-1" algorithm might be referred to as "SHA1".
      //  - The algorithm name is not case-sensitive.
      private static final ImmutableMap<String, HashFunction> ALGORITHMS =
          new ImmutableMap.Builder<String, HashFunction>()
              .put("MD5", Hashing.md5())
              .put("SHA", Hashing.sha1()) // Not the official name, but still works
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/xml/SAXParserFactoryUtilTest.java

                public void startElement(final String uri, final String localName, final String qName, final Attributes attributes)
                        throws SAXException {
                    if ("bar".equals(qName)) {
                        included = true;
                    }
                }
    
                @Override
                public InputSource resolveEntity(final String publicId, final String systemId) throws IOException, SAXException {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java

        private final transient String detailMessage;
    
        public DependencyResolutionException(DependencyResolutionResult result, String message, Throwable cause) {
            super(message, cause);
            this.result = result;
            this.detailMessage = prepareDetailMessage(message, result);
        }
    
        private static String prepareDetailMessage(String message, DependencyResolutionResult result) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/project/artifact/PluginArtifact.java

            @Override
            public String getClassifier() {
                return null;
            }
    
            @Override
            public String getDirectory() {
                return null;
            }
    
            @Override
            public String getExtension() {
                return "jar";
            }
    
            @Override
            public String getLanguage() {
                return "none";
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseComparator.java

     */
    public class PhaseComparator implements Comparator<String> {
        /**
         * The lifecycle phase ordering.
         */
        private final List<String> lifecyclePhases;
    
        /**
         * Constructor.
         *
         * @param lifecyclePhases the lifecycle phase ordering.
         */
        public PhaseComparator(List<String> lifecyclePhases) {
            this.lifecyclePhases = lifecyclePhases;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:04:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tests/test_regex_deprecated_body.py

                                        "anyOf": [{"type": "string"}, {"type": "integer"}]
                                    },
                                    "type": "array",
                                    "title": "Location",
                                },
                                "msg": {"type": "string", "title": "Message"},
                                "type": {"type": "string", "title": "Error Type"},
                            },
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_query_params/test_tutorial004.py

                                "items": {
                                    "anyOf": [{"type": "string"}, {"type": "integer"}]
                                },
                            },
                            "msg": {"title": "Message", "type": "string"},
                            "type": {"title": "Error Type", "type": "string"},
                        },
                    },
                    "HTTPValidationError": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top