Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,268 for guarantee (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * <p>
         * Excluding a particular transitive dependency does not guarantee that it does not show up
         * in the dependencies of a given configuration.
         * For example, some other dependency, which does not have any exclude rules,
         * might pull in exactly the same transitive dependency.
         * To guarantee that the transitive dependency is excluded from the entire configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	// root cert is not rotated.
    	certItem1 := loadCert(rotator)
    	verifyRootCertAndPrivateKey(t, true, certItem0, certItem1)
    
    	// Change grace period percentage to 100, so that root cert is guarantee to rotate.
    	rotator.config.certInspector = certutil.NewCertUtil(100)
    	rotator.checkAndRotateRootCert()
    	certItem2 := loadCert(rotator)
    	verifyRootCertAndPrivateKey(t, false, certItem1, certItem2)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    bool IsActivationFunction(Operation *op) {
      return isa<EluOp, ReluOp, Relu6Op>(op);
    }
    
    // Finds and returns an activation op that uses the result of `op`. If there are
    // multiple such activations, one is returned (with no guarantee as to which
    // one). If there are no activation functions that use the output, returns
    // nullptr.
    Operation *GetActivation(Value op) {
      for (auto &use : op.getUses()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    (not discard) one more real digit, doing an (n+1)-by-(n/2+1)-digit division that
    produces n/2+1 digits. That single extra digit tightens the Good Guess Guarantee
    to q ≤ q̂ ≤ q+1 and lets us drop long division's special treatment of the first
    digit. These benefits are discussed more after the Good Guess Guarantee proof
    below.
    
    
    How Fast is Recursive Division?
    
    For a 2n-by-n-digit division, this algorithm runs a 4-by-2 long division over
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    // types to the provided function. The function *must* accept objects of a and b - this machinery will not enforce
    // any other guarantee.
    func (c *Converter) RegisterUntypedConversionFunc(a, b interface{}, fn ConversionFunc) error {
    	return c.conversionFuncs.AddUntyped(a, b, fn)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue22881.go

    	m[0], _ = append(m[0], 0), *p
    }
    
    func fa3(m map[int][]int) {
    	// OSLICE has similar in-place-reassignment
    	// optimizations as OAPPEND, but we need to make sure
    	// to *not* optimize them, because we can't guarantee
    	// the slice indices are within bounds.
    	m[0] = m[0][:1]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 20 01:47:07 UTC 2018
    - 2K bytes
    - Viewed (0)
  7. doc/go_mem.html

    func main() {
    	go setup()
    	for !done {
    	}
    	print(a)
    }
    </pre>
    
    <p>
    As before, there is no guarantee that, in <code>main</code>,
    observing the write to <code>done</code>
    implies observing the write to <code>a</code>, so this program could
    print an empty string too.
    Worse, there is no guarantee that the write to <code>done</code> will ever
    be observed by <code>main</code>, since there are no synchronization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

     *    val valueAfter = function.getConstantFromExpressionBody() // Wrong way: valueAfter is not guarantied to be '1'
     *   }
     *
     *   analyse(function) {
     *    val valueAfter = function.getConstantFromExpressionBody() // OK: valueAfter is guarantied to be '1'
     *   }
     * }
     * ```
     */
    @KaAllowAnalysisFromWriteAction
    @KaAllowProhibitedAnalyzeFromWriteAction
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/encoding/binary/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (littleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (littleEndian) AppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                </thead>
                <tr>
                    <td>name</td>
                    <td><literal><replaceable>${project.name}</replaceable> (sometimes prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness)</literal></td>
                    <td/>
                </tr>
                <tr>
                    <td>sourceDirs</td>
                    <td><literal>[]</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top