Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 801 for Hoolehan (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        private File localRepositoryPath;
    
        private boolean offline = false;
    
        private boolean interactiveMode = true;
    
        private boolean cacheTransferError = false;
    
        private boolean cacheNotFound = false;
    
        private boolean ignoreMissingArtifactDescriptor = true;
    
        private boolean ignoreInvalidArtifactDescriptor = true;
    
        private boolean ignoreTransitiveRepositories;
    
        private List<Proxy> proxies;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Verify.java

       */
      public static void verify(boolean expression) {
        if (!expression) {
          throw new VerifyException();
        }
      }
    
      /**
       * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a
       * custom message otherwise.
       *
       * @param expression a boolean expression
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 18.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return whether a authentication failure during DFS resolving will throw an exception
         */
        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false)
         * 
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled ();
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    fatal(Object); public void fatal(Object, Throwable); public java.util.logging.Logger getLogger(); public void info(Object); public void info(Object, Throwable); public boolean isDebugEnabled(); public boolean isErrorEnabled(); public boolean isFatalEnabled(); public boolean isInfoEnabled(); public boolean isTraceEnabled(); public boolean isWarnEnabled(); public void trace(Object); public void trace(Object, Throwable); public void warn(Object); public void warn(Object, Throwable); } org/apache/common...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 30.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

            private Boolean explain;
    
            private Float minScore;
    
            private String preference;
    
            private String routing;
    
            private String searchType;
    
            private long timeoutInMillis = -1;
    
            private Boolean version;
    
            private Boolean seqNoAndPrimaryTerm = Boolean.TRUE;
    
            private int terminateAfter = 0;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

            private Boolean explain;
    
            private Float minScore;
    
            private String preference;
    
            private String routing;
    
            private String searchType;
    
            private long timeoutInMillis = -1;
    
            private Boolean version;
    
            private Boolean seqNoAndPrimaryTerm = Boolean.TRUE;
    
            private int terminateAfter = 0;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // Interactive
        MavenExecutionRequest setInteractiveMode(boolean interactive);
    
        boolean isInteractiveMode();
    
        // Offline
        MavenExecutionRequest setOffline(boolean offline);
    
        boolean isOffline();
    
        boolean isCacheTransferError();
    
        MavenExecutionRequest setCacheTransferError(boolean cacheTransferError);
    
        boolean isCacheNotFound();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      }
    
      /** Determines whether the given method returns a boolean value. */
      private static boolean isBoolean(Method method) {
        return method.getReturnType() == boolean.class;
      }
    
      /** Determines whether the given method can throw InterruptedException. */
      private static boolean isInterruptible(Method method) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 26.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Booleans.java

       *
       * @param arrays zero or more {@code boolean} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static boolean[] concat(boolean[]... arrays) {
        int length = 0;
        for (boolean[] array : arrays) {
          length += array.length;
        }
        boolean[] result = new boolean[length];
        int pos = 0;
        for (boolean[] array : arrays) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 19.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    getThreshold(); public void setThreshold(int); public String getName(); public void debug(String); public boolean isDebugEnabled(); public void info(String); public boolean isInfoEnabled(); public void warn(String); public boolean isWarnEnabled(); public void error(String); public boolean isErrorEnabled(); public void fatalError(String); public boolean isFatalErrorEnabled(); protected boolean isValidThreshold(int); } org/codehaus/plexus/logging/AbstractLoggerManage.class package org.codehaus.plexus.logging;...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 35.3K bytes
    - Viewed (0)
Back to top