Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for getLeft (0.13 sec)

  1. android/guava/src/com/google/common/collect/CompactHashSet.java

            if (CompactHashing.getHashPrefix(entry, mask) == hashPrefix
                && Objects.equal(object, elements[entryIndex])) {
              return false;
            }
            next = CompactHashing.getNext(entry, mask);
            bucketLength++;
          } while (next != UNSET);
    
          if (bucketLength >= MAX_HASH_BUCKET_LENGTH) {
            return convertToHashFloodingResistantImplementation().add(object);
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

        public final ServerMessageBlock getAndx () {
            return this.andx;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb1.ServerMessageBlock#getNext()
         */
        @Override
        public ServerMessageBlock getNext () {
            return this.andx;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockResponse#getNextResponse()
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

      auto *def_init = llvm::cast<llvm::DefInit>(input_value);
      auto *val = def_init->getDef()->getValue("tflRuntimeTypePredicate");
    
      // For non-per-axis op, no predicate means accepting AnyTensor.
      if (!val) return !per_axis;
    
      llvm::StringRef supported_types =
          def_init->getDef()->getValueAsString("tflRuntimeTypeDescription");
    
      for (const std::string &type : required_types) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            this.queryFreq = queryFreq;
            this.timestamp = ZonedDateTime.now();
            this.emptySource = createEmptyMap();
            this.id = SuggestUtil.createSuggestTextId(this.text);
        }
    
        public String getText() {
            return text;
        }
    
        public String[][] getReadings() {
            return readings;
        }
    
        public String[] getTags() {
            return tags;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            """
                @lombok.Value
                public class Test {
                    String test;
    
                    static {
                        new Test("test").getTest();
                    }
                }
            """
        }
    
        private class AnnotationProcessorPublisher {
            private final String group = 'org.gradle'
            private final String name = 'processor'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

                final Parser parser = tikaConfig.getParser();
                logger.debug("supportedTypes: {}", parser.getSupportedTypes(new ParseContext()));
            }
        }
    
        @Override
        public ExtractData getText(final InputStream inputStream, final Map<String, String> params) {
            if (inputStream == null) {
                throw new CrawlerSystemException("The inputstream is null.");
            }
    
            final File tempFile;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CredentialsProviderIntegrationTest.groovy

            def configurationCacheFiles = configurationCacheDirs[0].listFiles()
            configurationCacheFiles.size() == 2
            configurationCacheFiles.each {
                def content = it.getText()
                assert !content.contains('user-value')
                assert !content.contains('password-value')
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CompactHashMap.java

              V oldValue = (V) values[entryIndex];
    
              values[entryIndex] = value;
              accessEntry(entryIndex);
              return oldValue;
            }
            next = CompactHashing.getNext(entry, mask);
            bucketLength++;
          } while (next != UNSET);
    
          if (bucketLength >= MAX_HASH_BUCKET_LENGTH) {
            return convertToHashFloodingResistantImplementation().put(key, value);
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactHashMap.java

              V oldValue = (V) values[entryIndex];
    
              values[entryIndex] = value;
              accessEntry(entryIndex);
              return oldValue;
            }
            next = CompactHashing.getNext(entry, mask);
            bucketLength++;
          } while (next != UNSET);
    
          if (bucketLength >= MAX_HASH_BUCKET_LENGTH) {
            return convertToHashFloodingResistantImplementation().put(key, value);
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

                } catch (final IOException e) {
                    logger.error("Failed to close httpClient.", e);
                }
            }
        }
    
        @Override
        public ExtractData getText(final InputStream in, final Map<String, String> params) {
            if (logger.isDebugEnabled()) {
                logger.debug("Accessing {}", url);
            }
    
            // start
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top