Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2371 - 2380 of 7,014 for _return (0.05 sec)

  1. callbacks.go

    }
    
    func (cs *callbacks) Create() *processor {
    	return cs.processors["create"]
    }
    
    func (cs *callbacks) Query() *processor {
    	return cs.processors["query"]
    }
    
    func (cs *callbacks) Update() *processor {
    	return cs.processors["update"]
    }
    
    func (cs *callbacks) Delete() *processor {
    	return cs.processors["delete"]
    }
    
    func (cs *callbacks) Row() *processor {
    	return cs.processors["row"]
    }
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/SLinkedList.java

            }
            return getLastEntry().element;
        }
    
        /**
         * 最初のエントリを返します。
         *
         * @return 最初のエントリ
         */
        public Entry getFirstEntry() {
            if (isEmpty()) {
                return null;
            }
            return header.next;
        }
    
        /**
         * 最後のエントリを返します。
         *
         * @return 最後のエントリ
         */
        public Entry getLastEntry() {
            if (isEmpty()) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. internal/event/errors.go

    	case ErrInvalidFilterName, *ErrInvalidFilterName:
    		return true
    	case ErrFilterNamePrefix, *ErrFilterNamePrefix:
    		return true
    	case ErrFilterNameSuffix, *ErrFilterNameSuffix:
    		return true
    	case ErrInvalidFilterValue, *ErrInvalidFilterValue:
    		return true
    	case ErrDuplicateEventName, *ErrDuplicateEventName:
    		return true
    	case ErrUnsupportedConfiguration, *ErrUnsupportedConfiguration:
    		return true
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java

          return standardCeiling(e);
        }
    
        @Override
        public @Nullable T higher(T e) {
          return standardHigher(e);
        }
    
        @Override
        public @Nullable T pollFirst() {
          return standardPollFirst();
        }
    
        @Override
        public @Nullable T pollLast() {
          return standardPollLast();
        }
    
        @Override
        public SortedSet<T> headSet(T toElement) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            } else {
                return null;
            }
    
            if (anchorList.isEmpty()) {
                return null;
            }
    
            final Set<RequestData> childUrlSet = new LinkedHashSet<>();
            for (final String anchor : anchorList) {
                childUrlSet.add(RequestDataBuilder.newRequestData().get().url(anchor).build());
            }
            return childUrlSet;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingMap.java

      @Override
      protected abstract Map<K, V> delegate();
    
      @Override
      public int size() {
        return delegate().size();
      }
    
      @Override
      public boolean isEmpty() {
        return delegate().isEmpty();
      }
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V remove(@CheckForNull Object key) {
        return delegate().remove(key);
      }
    
      @Override
      public void clear() {
        delegate().clear();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/DcerpcHandle.java

        }
    
    
        /**
         * @return the binding
         */
        public DcerpcBinding getBinding () {
            return this.binding;
        }
    
    
        /**
         * @return the max_recv
         */
        int getMaxRecv () {
            return this.max_recv;
        }
    
    
        /**
         * @return the max_xmit
         */
        int getMaxXmit () {
            return this.max_xmit;
        }
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

                      return nodeConnection.node;
                    }
                  }
                  return endOfData();
                }
              };
            }
          }
    
          @Override
          public int size() {
            return predecessorCount;
          }
    
          @Override
          public boolean contains(@CheckForNull Object obj) {
            return isPredecessor(adjacentNodeValues.get(obj));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/math/BigIntegerMathRoundingBenchmark.java

          int j = i & ARRAY_MASK;
          tmp += BigIntegerMath.log2(positive[j], mode);
        }
        return tmp;
      }
    
      @Benchmark
      int log10(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += BigIntegerMath.log10(positive[j], mode);
        }
        return tmp;
      }
    
      @Benchmark
      int sqrt(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 30 13:06:20 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

                            return builder.setScript(script);
                        }
                    } catch (final Exception e) {
                        logger.warn("Failed to process {}", hit, e);
                    }
                    return null;
                });
                resultBuf.append(count).append(" docs").append("\n");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top