Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1081 - 1090 of 6,689 for Public (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            return permission;
        }
    
        public void setRolePrefix(final String rolePrefix) {
            this.rolePrefix = rolePrefix;
        }
    
        public void setGroupPrefix(final String groupPrefix) {
            this.groupPrefix = groupPrefix;
        }
    
        public void setUserPrefix(final String userPrefix) {
            this.userPrefix = userPrefix;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            });
        }
    
        public void setGeneratorList(final List<String> generatorList) {
            this.generatorList = generatorList;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        public void setName(final String name) {
            this.name = name;
        }
    
        public void setMaxRedirectCount(final int maxRedirectCount) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtCancel.java

     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/PreemptiveAuth.java

    import okhttp3.OkHttpClient;
    import okhttp3.Request;
    import okhttp3.Response;
    
    public final class PreemptiveAuth {
      private final OkHttpClient client;
    
      public PreemptiveAuth() {
        client = new OkHttpClient.Builder()
            .addInterceptor(
                new BasicAuthInterceptor("publicobject.com", "jesse", "password1"))
            .build();
      }
    
      public void run() throws Exception {
        Request request = new Request.Builder()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Nov 05 07:46:46 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/VerifyException.java

     *
     * @since 17.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class VerifyException extends RuntimeException {
      /** Constructs a {@code VerifyException} with no message. */
      public VerifyException() {}
    
      /** Constructs a {@code VerifyException} with the message {@code message}. */
      public VerifyException(@CheckForNull String message) {
        super(message);
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

        }
    
        public CrawlerClientFactory getClientFactory() {
            return clientFactory;
        }
    
        public boolean isBackground() {
            return background;
        }
    
        public void setBackground(final boolean background) {
            this.background = background;
        }
    
        public boolean isDaemon() {
            return daemon;
        }
    
        public void setDaemon(final boolean daemon) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                        """
                            package com.example;
    
                            public abstract class Task {
                                public String getSourceCompatibility() {
                                    return "";
                                }
                                public void setSourceCompatibility(String value) {
                                }
                            }
                        """
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Oct 02 14:20:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        }
    
        public String toString() {
            return connection.toString();
        }
    
        public void setDoInput(boolean doInput) {
            connection.setDoInput(doInput);
            this.doInput = doInput;
        }
    
        public boolean getDoInput() {
            return connection.getDoInput();
        }
    
        public void setDoOutput(boolean doOutput) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsLabelTypeCB.java

            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnExcludedPaths() {
                doColumn("excludedPaths");
            }
    
            public void columnIncludedPaths() {
                doColumn("includedPaths");
            }
    
            public void columnName() {
                doColumn("name");
            }
    
            public void columnPermissions() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

        public UserManual getUserManual() {
            return userManual;
        }
    
        public void userManual(Action<? super UserManual> action) {
            action.execute(userManual);
        }
    
        public DslReference getDslReference() {
            return dslReference;
        }
    
        public void dslReference(Action<? super DslReference> action) {
            action.execute(dslReference);
        }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Aug 20 14:11:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top