Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for Bins (0.17 sec)

  1. cmd/tier-last-day-stats_gen.go

    	// map header, size 2
    	// write "Bins"
    	err = en.Append(0x82, 0xa4, 0x42, 0x69, 0x6e, 0x73)
    	if err != nil {
    		return
    	}
    	err = en.WriteArrayHeader(uint32(24))
    	if err != nil {
    		err = msgp.WrapError(err, "Bins")
    		return
    	}
    	for za0001 := range z.Bins {
    		err = z.Bins[za0001].EncodeMsg(en)
    		if err != nil {
    			err = msgp.WrapError(err, "Bins", za0001)
    			return
    		}
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  2. cmd/tier-last-day-stats.go

    	l.UpdatedAt = t // update to the latest time index
    
    	if since >= 24 {
    		l.Bins = [24]tierStats{}
    		return
    	}
    
    	for lastIdx != idx {
    		lastIdx = (lastIdx + 1) % 24
    		l.Bins[lastIdx] = tierStats{}
    	}
    }
    
    func (l *lastDayTierStats) clone() lastDayTierStats {
    	clone := lastDayTierStats{
    		UpdatedAt: l.UpdatedAt,
    	}
    	copy(clone.Bins[:], l.Bins[:])
    	return clone
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Feb 19 22:54:46 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Striped.java

       * stripes, the intended concurrency level, and the typical number of keys used in a {@code
       * bulkGet(keys)} operation. See <a href="http://www.mathpages.com/home/kmath199.htm">Balls in
       * Bins model</a> for mathematical formulas that can be used to estimate the probability of
       * collisions.
       *
       * @param keys arbitrary non-null keys
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 10 20:55:18 GMT 2023
    - 20.3K bytes
    - Viewed (1)
  4. src/main/resources/fess_indices/fess/ca/stopwords.txt

    cadascuns
    com
    contra
    d'un
    d'una
    d'unes
    d'uns
    dalt
    de
    del
    dels
    des
    després
    dins
    dintre
    donat
    doncs
    durant
    e
    eh
    el
    els
    em
    en
    encara
    ens
    entre
    érem
    eren
    éreu
    es
    és
    esta
    està
    estàvem
    estaven
    estàveu
    esteu
    et
    etc
    ets
    fins
    fora
    gairebé
    ha
    han
    has
    havia
    he
    hem
    heu
    hi 
    ho
    i
    igual
    iguals
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolverTest.java

        /**
         * Tests that <code>a:1.0</code> wins in the scenario:
         * <pre>
         * a:1.0
         * a:2.0
         * </pre>
         */
        @Test
        void testEqual() {
            ResolutionNode a1n = createResolutionNode(a1);
            ResolutionNode a2n = createResolutionNode(a2);
    
            assertResolveConflict(a1n, a1n, a2n);
        }
    
        /**
         * Tests that <code>a:1.0</code> wins in the scenario:
         * <pre>
         * a:2.0
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolverTest.java

        /**
         * Tests that <code>a:2.0</code> wins in the scenario:
         * <pre>
         * a:1.0
         * a:2.0
         * </pre>
         */
        @Test
        void testEqual() {
            ResolutionNode a1n = createResolutionNode(a1);
            ResolutionNode a2n = createResolutionNode(a2);
    
            assertResolveConflict(a2n, a1n, a2n);
        }
    
        /**
         * Tests that <code>a:2.0</code> wins in the scenario:
         * <pre>
         * a:2.0
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

          this
        } else {
          CertificatePinner(pins, certificateChainCleaner)
        }
      }
    
      override fun equals(other: Any?): Boolean {
        return other is CertificatePinner &&
          other.pins == pins &&
          other.certificateChainCleaner == certificateChainCleaner
      }
    
      override fun hashCode(): Int {
        var result = 37
        result = 41 * result + pins.hashCode()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 14.2K bytes
    - Viewed (1)
  8. src/main/java/jcifs/ResolverType.java

     */
    package jcifs;
    
    
    /**
     * Enumeration of usable resolver types
     * 
     * @author mbechler
     *
     */
    public enum ResolverType {
        /**
         * Resolve using WINS server
         */
        RESOLVER_WINS,
    
        /**
         * NETBIOS broadcast
         */
        RESOLVER_BCAST,
    
        /**
         * DNS
         */
        RESOLVER_DNS,
    
        /**
         * LMHosts file lookup
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                        tmp[i++] = RESOLVER_LMHOSTS;
                    } else if( s.equalsIgnoreCase( "WINS" )) {
                        if( NbtAddress.getWINSAddress() == null ) {
                            if( log.level > 1 ) {
                                log.println( "NetBIOS resolveOrder specifies WINS however the " +
                                        "jcifs.smb1.netbios.wins property has not been set" );
                            }
                            continue;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/config/BaseConfiguration.java

                    }
                    else if ( s.equalsIgnoreCase("WINS") ) {
                        if ( this.winsServer.length == 0 ) {
                            log.error("UniAddress resolveOrder specifies WINS however " + " WINS server has not been configured");
                            continue;
                        }
                        this.resolverOrder.add(ResolverType.RESOLVER_WINS);
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
Back to top