Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,951 for rreturn (0.08 sec)

  1. guava/src/com/google/common/reflect/TypeResolver.java

              }
              return super.captureAsTypeVariable(combined.toArray(new Type[0]));
            }
          };
        }
    
        private WildcardCapturer notForTypeVariable() {
          return new WildcardCapturer(id);
        }
    
        private @Nullable Type captureNullable(@Nullable Type type) {
          if (type == null) {
            return null;
          }
          return capture(type);
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

         *
         * @return string representation of all inputs separated by newlines, or empty string if inputs is null
         */
        public String getInputsValue() {
            if (inputs == null) {
                return StringUtil.EMPTY;
            }
            return String.join("\n", inputs);
        }
    
        /**
         * Returns the output character sequence that inputs are mapped to.
         *
         * @return the output sequence
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/timer/TimeoutManager.java

                }
            }
            return expiredTask;
        }
    
        /**
         * Stops the process if there are no managed tasks.
         *
         * @return whether the process was stopped
         */
        protected synchronized boolean stopIfLeisure() {
            if (timeoutTaskList.isEmpty()) {
                thread = null;
                return true;
            }
            return false;
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

                return e;
              }
            }
          }
    
          return null;
        }
    
        @Nullable E getLiveEntry(Object key, int hash) {
          return getEntry(key, hash);
        }
    
        @Nullable V get(Object key, int hash) {
          try {
            E e = getLiveEntry(key, hash);
            if (e == null) {
              return null;
            }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/Type1Message.java

            parse(material);
        }
    
        /**
         * Returns the default flags for a generic Type-1 message in the
         * current environment.
         *
         * @param tc
         *            context to use
         * @return An <code>int</code> containing the default flags.
         */
        public static int getDefaultFlags(final CIFSContext tc) {
            return NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_VERSION
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * @return a new instance of {@link ArrayDeque}
         * @see ArrayDeque#ArrayDeque(int)
         */
        public static <E> ArrayDeque<E> newArrayDeque(final int numElements) {
            return new ArrayDeque<>(numElements);
        }
    
        /**
         * Creates and returns a new instance of {@link ArrayList}.
         *
         * @param <E> the element type of {@link ArrayList}
         * @return a new instance of {@link ArrayList}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    		return j.ObjectV1.Signature()
    	}
    	return signatureErr
    }
    
    // getModTime will return the ModTime of the underlying version.
    func (j xlMetaV2Version) getModTime() time.Time {
    	switch j.Type {
    	case ObjectType:
    		return time.Unix(0, j.ObjectV2.ModTime)
    	case DeleteType:
    		return time.Unix(0, j.DeleteMarker.ModTime)
    	case LegacyType:
    		return j.ObjectV1.Stat.ModTime
    	}
    	return time.Time{}
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 65.6K bytes
    - Viewed (1)
  8. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

                        return createMockRescorerBuilder();
                    }
                    if (params.containsKey("boolean") && params.get("boolean") instanceof Boolean) {
                        return createMockRescorerBuilder();
                    }
    
                    return null;
                }
            };
    
            // Test with string parameter
            Map<String, Object> stringParams = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

          return false;
        }
    
        return true;
      }
    
      /**
       * Returns the individual components of this domain name, normalized to all lower case. For
       * example, for the domain name {@code mail.google.com}, this method returns the list {@code
       * ["mail", "google", "com"]}.
       */
      public ImmutableList<String> parts() {
        return parts;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Streams.java

              return true;
            }
            return false;
          }
    
          @Override
          Splitr createSplit(Spliterator.OfInt from, long i) {
            return new Splitr(from, i);
          }
        }
        return StreamSupport.stream(new Splitr(fromSpliterator, 0), isParallel).onClose(stream::close);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
Back to top