Search Options

Results per page
Sort
Preferred Languages
Advance

Results 431 - 440 of 6,132 for trying (0.08 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

        // CHECKSTYLE_ON: MagicNumber
    
        public static final String BUILD_VERSION_PROPERTY = "version";
    
        public static String showVersion() {
            return showVersion(null, null);
        }
    
        public static String showVersion(String commandLine, String terminal) {
            final String ls = System.lineSeparator();
            Properties properties = getBuildProperties();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java

        //                                                                           =========
        /** crawlingInfoId */
        protected String crawlingInfoId;
    
        /** createdTime */
        protected Long createdTime;
    
        /** key */
        protected String key;
    
        /** value */
        protected String value;
    
        // [Referrers] *comment only
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                  protected Set<String> create(String[] elements) {
                    final String[] deduped = dedupe(elements);
                    return new AbstractSet<String>() {
                      @Override
                      public int size() {
                        return deduped.length;
                      }
    
                      @Override
                      public Iterator<String> iterator() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/ImmutableValueGraphTest.java

                .<String>nodeOrder(ElementOrder.<String>natural());
        ImmutableValueGraph.Builder<String, Integer> immutableValueGraphBuilder =
            graphBuilder.<String, Integer>immutable();
    
        // Update ValueGraphBuilder, but this shouldn't impact immutableValueGraphBuilder
        graphBuilder.allowsSelfLoops(false).nodeOrder(ElementOrder.<String>unordered());
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jan 09 20:24:43 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

        }
    
        public static class OpenIdUser implements FessUser {
    
            private static final long serialVersionUID = 1L;
    
            protected final String name;
    
            protected String[] groups;
    
            protected String[] roles;
    
            protected String[] permissions;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

        /** configParameter */
        protected String configParameter;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** depth */
        protected Integer depth;
    
        /** description */
        protected String description;
    
        /** excludedDocUrls */
        protected String excludedDocUrls;
    
        /** excludedUrls */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            }
        }
    
        @Override
        protected void storeChildUrl(final String childUrl, final String parentUrl, final String metaData, final int depth) {
            if (StringUtil.isNotBlank(childUrl)) {
                final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper();
                final String url = duplicateHostHelper.convert(childUrl);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

      public void testStaticMethod_returning() throws Exception {
        Invokable<?, Iterable<String>> delegate =
            Prepender.method("prepend", String.class, Iterable.class)
                .returning(new TypeToken<Iterable<String>>() {});
        assertEquals(new TypeToken<Iterable<String>>() {}, delegate.getReturnType());
        Iterable<String> result = delegate.invoke(null, "a", ImmutableList.of("b", "c"));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/InvokableTest.java

      public void testStaticMethod_returning() throws Exception {
        Invokable<?, Iterable<String>> delegate =
            Prepender.method("prepend", String.class, Iterable.class)
                .returning(new TypeToken<Iterable<String>>() {});
        assertEquals(new TypeToken<Iterable<String>>() {}, delegate.getReturnType());
        Iterable<String> result = delegate.invoke(null, "a", ImmutableList.of("b", "c"));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. istioctl/pkg/multicluster/remote_secret.go

    func (at *RemoteSecretAuthType) String() string { return string(*at) }
    func (at *RemoteSecretAuthType) Type() string   { return "RemoteSecretAuthType" }
    func (at *RemoteSecretAuthType) Set(in string) error {
    	*at = RemoteSecretAuthType(in)
    	return nil
    }
    
    func (at *SecretType) String() string { return string(*at) }
    func (at *SecretType) Type() string   { return "SecretType" }
    func (at *SecretType) Set(in string) error {
    	*at = SecretType(in)
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 15 16:31:46 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top