Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1871 - 1880 of 5,847 for stringy (0.08 sec)

  1. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001_py39.py

                                    "anyOf": [{"type": "string"}, {"type": "integer"}]
                                },
                                "type": "array",
                                "title": "Location",
                            },
                            "msg": {"type": "string", "title": "Message"},
                            "type": {"type": "string", "title": "Error Type"},
                        },
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLogger.java

        private org.slf4j.Logger logger;
        private String projectId;
    
        public Slf4jLogger(org.slf4j.Logger logger) {
            this.logger = logger;
            this.projectId = ProjectBuildLogAppender.getProjectId();
        }
    
        public void debug(String message) {
            setMdc();
            logger.debug(message);
        }
    
        public void debug(String message, Throwable throwable) {
            setMdc();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java

                throws ArtifactResolutionException, ArtifactNotFoundException {
            return resolve(Collections.singleton(project), scopesToResolve, session);
        }
    
        public Set<Artifact> resolve(
                MavenProject project,
                Collection<String> scopesToCollect,
                Collection<String> scopesToResolve,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

            return getInetAddress();
        }
    
    
        /**
         * Returns this IP adress as a {@link java.lang.String} in the form "%d.%d.%d.%d".
         * 
         * @return string representation of the IP address
         */
    
        @Override
        public String getHostAddress () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

          ) {
            builder.username(value)
          }
    
          override operator fun get(url: HttpUrl): String = url.username
        },
    
        PASSWORD {
          override fun urlString(value: String): String = "http://:$******@****.***/"
    
          override fun encodedValue(url: HttpUrl): String = url.encodedPassword
    
          override operator fun set(
            builder: HttpUrl.Builder,
            value: String,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/filter/EncodingFilterTest.java

    public class EncodingFilterTest extends UnitFessTestCase {
        public void test_normal() throws IOException {
            final EncodingFilter filter = new EncodingFilter();
            Map<String, String[]> paramMap;
    
            paramMap = filter.parseQueryString("a=1", "UTF-8");
            assertEquals(1, paramMap.size());
            assertEquals("1", paramMap.get("a")[0]);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. cmd/bitrot-whole.go

    func newWholeBitrotWriter(disk StorageAPI, volume, filePath string, algo BitrotAlgorithm, shardSize int64) io.WriteCloser {
    	return &wholeBitrotWriter{disk, volume, filePath, shardSize, algo.New()}
    }
    
    // Implementation to verify bitrot for the whole file.
    type wholeBitrotReader struct {
    	disk       StorageAPI
    	volume     string
    	filePath   string
    	verifier   *BitrotVerifier // Holds the bit-rot info
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_body_fields/test_tutorial001_an_py310.py

                                "items": {
                                    "anyOf": [{"type": "string"}, {"type": "integer"}]
                                },
                            },
                            "msg": {"title": "Message", "type": "string"},
                            "type": {"title": "Error Type", "type": "string"},
                        },
                    },
                    "HTTPValidationError": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/CharSourceTester.java

      }
    
      static TestSuite suiteForString(
          CharSourceFactory factory, String string, String name, String desc) {
        TestSuite suite = new TestSuite(name + " [" + desc + "]");
        for (Method method : testMethods) {
          suite.addTest(new CharSourceTester(factory, string, name, desc, method));
        }
        return suite;
      }
    
      private final ImmutableList<String> expectedLines;
    
      private CharSource source;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool-decom_gen.go

    	// string "obj"
    	o = append(o, 0xa3, 0x6f, 0x62, 0x6a)
    	o = msgp.AppendString(o, z.Object)
    	// string "id"
    	o = append(o, 0xa2, 0x69, 0x64)
    	o = msgp.AppendInt64(o, z.ItemsDecommissioned)
    	// string "idf"
    	o = append(o, 0xa3, 0x69, 0x64, 0x66)
    	o = msgp.AppendInt64(o, z.ItemsDecommissionFailed)
    	// string "bd"
    	o = append(o, 0xa2, 0x62, 0x64)
    	o = msgp.AppendInt64(o, z.BytesDone)
    	// string "bf"
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
Back to top