Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for Approximates (0.28 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. docs/LICENSE

         IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
    
      c. The disclaimer of warranties and limitation of liability provided
         above shall be interpreted in a manner that, to the extent
         possible, most closely approximates an absolute disclaimer and
         waiver of all liability.
    
    
    Section 6 -- Term and Termination.
    
      a. This Public License applies for the term of the Copyright and
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  6. 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)
  7. LICENSE

      If the disclaimer of warranty and limitation of liability provided
    above cannot be given local legal effect according to their terms,
    reviewing courts shall apply local law that most closely approximates
    an absolute waiver of all civil liability in connection with the
    Program, unless a warranty or assumption of liability accompanies a
    copy of the Program in return for a fee.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top