Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for Approximates (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/storageversionhash.go

    	gvk := group + "/" + version + "/" + kind
    	bytes := sha256.Sum256([]byte(gvk))
    	// Assuming there are N kinds in the cluster, and the hash is X-byte long,
    	// the chance of colliding hash P(N,X) approximates to 1-e^(-(N^2)/2^(8X+1)).
    	// P(10,000, 8) ~= 2.7*10^(-12), which is low enough.
    	// See https://en.wikipedia.org/wiki/Birthday_problem#Approximations.
    	return base64.StdEncoding.EncodeToString(bytes[:8])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 14 12:08:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

    public interface KaTypeProviderMixIn : KaSessionMixIn {
        public val builtinTypes: KaBuiltinTypes
            get() = withValidityAssertion { analysisSession.typeProvider.builtinTypes }
    
        /**
         * Approximates [KaType] with a supertype which can be rendered in a source code
         *
         * Return `null` if the type do not need approximation and can be rendered as is
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/cse.go

    					continue
    				}
    				b.ReplaceControl(i, x)
    			}
    		}
    	}
    
    	if f.pass.stats > 0 {
    		f.LogStat("CSE REWRITES", rewrites)
    	}
    }
    
    // An eqclass approximates an equivalence class. During the
    // algorithm it may represent the union of several of the
    // final equivalence classes.
    type eqclass []*Value
    
    // partitionValues partitions the values into equivalence classes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. docs/bigdata/README.md

    Follow these steps to run the Spark Pi example:
    
    - Login as user **‘spark’**.
    - When the job runs, the library can now use **MinIO** during intermediate processing.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    	priv.E = 65537
    
    	if nprimes < 2 {
    		return nil, errors.New("crypto/rsa: GenerateMultiPrimeKey: nprimes must be >= 2")
    	}
    
    	if bits < 64 {
    		primeLimit := float64(uint64(1) << uint(bits/nprimes))
    		// pi approximates the number of primes less than primeLimit
    		pi := primeLimit / (math.Log(primeLimit) - 1)
    		// Generated primes start with 11 (in binary) so we can only
    		// use a quarter of them.
    		pi /= 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        rewriter.replaceOpWithNewOp<TensorScatterUpdateOp>(
            op, result_type, op.getX(), indices, updates);
        return success();
      }
    };
    
    // Approximates lgamma using Lanczos' approximation from
    // "A Precision Approximation of the Gamma Function". SIAM Journal on Numerical
    // Analysis series B. Vol. 1:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/typeProvider/AbstractAnalysisApiGetSuperTypesTest.kt

                        }
                        directSuperTypes.print("[direct super types]")
                        approximatedDirectSuperTypes.print("[approximated direct super types]")
                        allSuperTypes.print("[all super types]")
                        approximatedAllSuperTypes.print("[approximated all super types]")
                    }
                }
            }
            testServices.assertions.assertEqualsToTestDataFileSibling(actual)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

         *
         * @param useSitePosition is used to determine if the given [KaType] needs to be approximated.
         * For instance, if the given type is local yet available in the same scope of use site,
         * we can still use such a local type.
         * Otherwise, e.g., exposed to public as a return type, the resulting type will be approximated accordingly.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

            [(IsStrCompositeAttribute<"approximate", "none"> $attrs)]>;
    
    def LegalizeCompositeApproximateAtenGELU : Pat<
            (MHLO_CompositeOp:$composite
              (variadic $inputs),
              ConstantStrAttr<StrAttr, "aten.gelu.default">, $attrs, $_, $_),
            (TFL_GeluOp $inputs, ConstBoolAttrTrue),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinGccProducedBinaryInfo.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.binaryinfo
    /**
     * Binary information for GCC produced binaries. It approximate features required by our tests using dumpbin.exe from Visual Studio. It's not the right solution, but it works for most cases.
     */
    class DumpbinGccProducedBinaryInfo extends DumpbinBinaryInfo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top