Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 237 for getPoint (0.72 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionEvent.java

            this.count = count;
        }
    
        public long getTimestamp() {
            return timestamp;
        }
    
        public MemoryUsage getUsage() {
            return usage;
        }
    
        public long getCount() {
            return count;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMultiset.java

      @Override
      int copyIntoArray(@Nullable Object[] dst, int offset) {
        for (Multiset.Entry<E> entry : entrySet()) {
          Arrays.fill(dst, offset, offset + entry.getCount(), entry.getElement());
          offset += entry.getCount();
        }
        return offset;
      }
    
      @Override
      public boolean equals(@CheckForNull Object object) {
        return Multisets.equalsImpl(this, object);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

        private static final int SND_BUF_SIZE = Config.getInt( "jcifs.smb1.netbios.snd_buf_size", DEFAULT_SND_BUF_SIZE );
        private static final int RCV_BUF_SIZE = Config.getInt( "jcifs.smb1.netbios.rcv_buf_size", DEFAULT_RCV_BUF_SIZE );
        private static final int SO_TIMEOUT = Config.getInt( "jcifs.smb1.netbios.soTimeout", DEFAULT_SO_TIMEOUT );
        private static final int RETRY_COUNT = Config.getInt( "jcifs.smb1.netbios.retryCount", DEFAULT_RETRY_COUNT );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiKatakanaStemmerFactory.java

        public KuromojiKatakanaStemmerFactory(IndexSettings indexSettings, Environment environment, String name, Settings settings) {
            super(indexSettings, name, settings);
            minimumLength = settings.getAsInt("minimum_length", JapaneseKatakanaStemFilter.DEFAULT_MINIMUM_LENGTH);
        }
    
        @Override
        public TokenStream create(TokenStream tokenStream) {
            return new JapaneseKatakanaStemFilter(tokenStream, minimumLength);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

              protected void finalize() {
                latch.countDown();
              }
            };
        x = null; // Hint to the JIT that x is unreachable
        GcFinalization.await(latch);
        assertEquals(0, latch.getCount());
      }
    
      public void testAwaitDone_Future() {
        final SettableFuture<@Nullable Void> future = SettableFuture.create();
        Object x =
            new Object() {
              @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. tests/fuzz/config_validation_fuzzer.go

    	"istio.io/istio/pkg/config/validation"
    	"istio.io/istio/pkg/config/validation/envoyfilter"
    	"istio.io/istio/pkg/kube"
    )
    
    func FuzzConfigValidation(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	configIndex, err := f.GetInt()
    	if err != nil {
    		return -1
    	}
    
    	r := collections.Pilot.All()[configIndex%len(collections.Pilot.All())]
    	gvk := r.GroupVersionKind()
    	kgvk := schema.GroupVersionKind{
    		Group:   gvk.Group,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/AlphaNumWordFilterFactory.java

                final Settings settings) {
            super(indexSettings, name, settings);
    
            maxTokenLength = settings.getAsInt("max_token_length", AlphaNumWordFilter.DEFAULT_MAX_TOKEN_LENGTH);
        }
    
        @Override
        public TokenStream create(final TokenStream tokenStream) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

            String response = checkGetMethod(searchBody, getListEndpointSuffix()).asString();
            final int total = JsonPath.from(response).getInt("response.total");
            final List<Map<String, String>> items = JsonPath.from(response).getList("response.settings");
            final int status = JsonPath.from(response).getInt("response.status");
            assertEquals(total, items.size());
            assertEquals(0, status);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RegularImmutableMultiset.java

          @SuppressWarnings("unchecked") // safe because we only read from it
          Entry<E> entry = (Entry<E>) entryWithWildcard;
          E element = checkNotNull(entry.getElement());
          int count = entry.getCount();
          int hash = element.hashCode();
          int bucket = Hashing.smear(hash) & mask;
          ImmutableEntry<E> bucketHead = hashTable[bucket];
          ImmutableEntry<E> newEntry;
          if (bucketHead == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComWriteResponse.java

        /**
         * 
         * @param config
         */
        public SmbComWriteResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the count
         */
        public long getCount () {
            return this.count;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top