Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Turner (0.2 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    .name();
        }
    
        public void setRunner(final OpenSearchRunner runner) {
            this.runner = runner;
        }
    
        public boolean isEmbedded() {
            return this.runner != null;
        }
    
        public void usePipeline() {
            this.usePipeline = true;
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

          // https://shipilev.net/jvm/anatomy-quarks/28-frequency-based-code-layout/
          if (result != this) {
            // The field held either a `T` or `this`, and it turned out not to be `this`.
            @SuppressWarnings("unchecked")
            T t = (T) result;
            return t;
          }
          throw new NoSuchElementException();
        }
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Apr 20 03:33:06 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

        @Override
        @ParametricNullness
        public T next() {
          if (valueOrSentinel == SENTINEL) {
            throw new NoSuchElementException();
          }
          // The field held either a T or SENTINEL, and it turned out not to be SENTINEL.
          @SuppressWarnings("unchecked")
          T t = (T) valueOrSentinel;
          valueOrSentinel = SENTINEL;
          return t;
        }
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    
    	// Generic Invalid-Request error. Should be used for response errors only for unlikely
    	// corner case errors for which introducing new APIErrorCode is not worth it. LogIf()
    	// should be used to log the error at the source of the error for debugging purposes.
    	ErrInvalidRequest: {
    		Code:           "InvalidRequest",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 05:26:02 GMT 2024
    - 90.2K bytes
    - Viewed (6)
Back to top