Search Options

Results per page
Sort
Preferred Languages
Advance

Results 571 - 580 of 1,602 for goString (0.12 sec)

  1. android/guava-tests/test/com/google/common/primitives/IntsTest.java

            .that(Ints.tryParse(Long.toString(((long) GREATEST) * 10)))
            .isNull();
        assertWithMessage("Min integer - 1")
            .that(Ints.tryParse(Long.toString(((long) LEAST) - 1)))
            .isNull();
        assertWithMessage("Min integer * 10")
            .that(Ints.tryParse(Long.toString(((long) LEAST) * 10)))
            .isNull();
        assertWithMessage("Max long").that(Ints.tryParse(Long.toString(Long.MAX_VALUE))).isNull();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/LongsTest.java

            .isNull();
        assertWithMessage("Max long * 10")
            .that(Longs.tryParse(BigInteger.valueOf(MAX_VALUE).multiply(BigInteger.TEN).toString()))
            .isNull();
        assertWithMessage("Min long - 1")
            .that(Longs.tryParse(BigInteger.valueOf(MIN_VALUE).subtract(BigInteger.ONE).toString()))
            .isNull();
        assertWithMessage("Min long * 10")
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoParamDbm.java

            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCreatedTime(),
                    (et, vl) -> ((CrawlingInfoParam) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime");
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getKey(), (et, vl) -> ((CrawlingInfoParam) et).setKey(DfTypeUtil.toString(vl)),
                    "key");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractMultiset.java

        return entrySet().hashCode();
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation returns the result of invoking {@code toString} on {@link
       * Multiset#entrySet()}.
       */
      @Override
      public final String toString() {
        return entrySet().toString();
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/platform/Jdk9PlatformTest.kt

        } catch (nsme: NoSuchMethodException) {
          assertThat(buildIfSupported()).isNull()
        }
      }
    
      @Test
      fun testToStringIsClassname() {
        assertThat(Jdk9Platform().toString()).isEqualTo("Jdk9Platform")
      }
    
      @Test
      fun selectedProtocolIsNullWhenSslSocketThrowsExceptionForApplicationProtocol() {
        platform.assumeJdk9()
        val applicationProtocolUnsupported =
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            buf.append(LF).append("```");
            buf.append(LF).append(StringEscapeUtils.escapeJson(discloser.getSavedPlainText().orElse(StringUtil.EMPTY).trim()));
            buf.append(LF).append("```\"}");
            return buf.toString();
        }
    
        protected void sendToGoogleChat(final CardView cardView, final SMailPostingDiscloser discloser) {
            // https://developers.google.com/hangouts/chat/how-tos/webhooks
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ElevateWordToLabelDbm.java

                    (et, vl) -> ((ElevateWordToLabel) et).setElevateWordId(DfTypeUtil.toString(vl)), "elevateWordId");
            setupEpg(_epgMap, et -> ((ElevateWordToLabel) et).getLabelTypeId(),
                    (et, vl) -> ((ElevateWordToLabel) et).setLabelTypeId(DfTypeUtil.toString(vl)), "labelTypeId");
        }
    
        @Override
        public PropertyGateway findPropertyGateway(final String prop) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/MoreFiles.java

                return Files.lines(path, charset);
              }
            };
          }
    
          return super.asCharSource(charset);
        }
    
        @Override
        public String toString() {
          return "MoreFiles.asByteSource(" + path + ", " + Arrays.toString(options) + ")";
        }
      }
    
      /**
       * Returns a view of the given {@code path} as a {@link ByteSink}.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/MoreFiles.java

                return Files.lines(path, charset);
              }
            };
          }
    
          return super.asCharSource(charset);
        }
    
        @Override
        public String toString() {
          return "MoreFiles.asByteSource(" + path + ", " + Arrays.toString(options) + ")";
        }
      }
    
      /**
       * Returns a view of the given {@code path} as a {@link ByteSink}.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java

                    return null;
                }
            };
        }
    
        private boolean addEdge(Path from, Path p, DefaultModelProblemCollector problems) {
            try {
                dag.addEdge(from.toString(), p.toString());
                return true;
            } catch (Graph.CycleDetectedException e) {
                problems.add(new DefaultModelProblem(
                        "Cycle detected between models at " + from + " and " + p,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top