Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 192 for biases (0.11 sec)

  1. guava/src/com/google/common/math/StatsAccumulator.java

     * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.math;
    
    import static com.google.common.base.Preconditions.checkState;
    import static com.google.common.math.DoubleUtils.ensureNonNegative;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/StatsAccumulator.java

     * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.math;
    
    import static com.google.common.base.Preconditions.checkState;
    import static com.google.common.math.DoubleUtils.ensureNonNegative;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/BloomFilter.java

     * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.hash;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/strconv/atoi_test.go

    		benchmarkAtoi(b, -1)
    	})
    }
    
    func benchmarkAtoi(b *testing.B, neg int) {
    	cases := []benchCase{
    		{"7bit", 1<<7 - 1},
    		{"26bit", 1<<26 - 1},
    		{"31bit", 1<<31 - 1},
    	}
    	if IntSize == 64 {
    		cases = append(cases, []benchCase{
    			{"56bit", 1<<56 - 1},
    			{"63bit", 1<<63 - 1},
    		}...)
    	}
    	for _, cs := range cases {
    		b.Run(cs.name, func(b *testing.B) {
    			s := fmt.Sprintf("%d", cs.num*int64(neg))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/scope.go

    	obj := resolve(name, s.elems[name])
    	// Hijack Lookup for "any": with gotypesalias=1, we want the Universe to
    	// return an Alias for "any", and with gotypesalias=0 we want to return
    	// the legacy representation of aliases.
    	//
    	// This is rather tricky, but works out after auditing of the usage of
    	// s.elems. The only external API to access scope elements is Lookup.
    	//
    	// TODO: remove this once gotypesalias=0 is no longer supported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/go/types/scope.go

    	obj := resolve(name, s.elems[name])
    	// Hijack Lookup for "any": with gotypesalias=1, we want the Universe to
    	// return an Alias for "any", and with gotypesalias=0 we want to return
    	// the legacy representation of aliases.
    	//
    	// This is rather tricky, but works out after auditing of the usage of
    	// s.elems. The only external API to access scope elements is Lookup.
    	//
    	// TODO: remove this once gotypesalias=0 is no longer supported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pilot/pkg/security/model/authentication_test.go

    												},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "MTLSStrict using SDS and SAN aliases",
    			node: &model.Proxy{
    				Metadata: &model.NodeMetadata{},
    			},
    			validateClient:     true,
    			trustDomainAliases: []string{"alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/BloomFilter.java

     * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.hash;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/math/rand/v2/rand.go

    	// the high bits of a double-width multiply of x*n, meaning (x*n)/2⁶⁴.
    	// Since there are 2⁶⁴ possible inputs x and only n possible outputs,
    	// the output is necessarily biased if n does not divide 2⁶⁴.
    	// In general (x*n)/2⁶⁴ = k for x*n in [k*2⁶⁴,(k+1)*2⁶⁴).
    	// There are either floor(2⁶⁴/n) or ceil(2⁶⁴/n) possible products
    	// in that range, depending on k.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/first-steps.md

    
    
    ...
    ```
    
    #### À quoi sert OpenAPI
    
    Le schéma **OpenAPI** est ce qui alimente les deux systèmes de documentation interactive.
    
    Et il existe des dizaines d'alternatives, toutes basées sur **OpenAPI**. Vous pourriez facilement ajouter n'importe laquelle de ces alternatives à votre application **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top