Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 160 for Clip (0.23 sec)

  1. src/main/webapp/js/bootstrap.min.js

    navbar-nav",Vt=".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",Yt="top-start",zt="top-end",Xt="bottom-start",$t="bottom-end",Gt="right-start",Jt="left-start",Zt={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},te={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},ee=function(){function c(t,e){this._element=t,this._popper=null,this._...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

    
    internal
    inline operator fun <T> Parser<T>.plus(crossinline alternative: Parser<T>): Parser<T> =
        either(this, alternative, { it }, { it })
    
    
    internal
    inline fun <T, U> flip(
        crossinline t: Parser<T>,
        crossinline u: Parser<U>,
    ): Parser<Pair<U, T>> =
        zip(t, u) { tr, ur -> ur to tr }
    
    
    internal
    inline fun <T, U, R> zip(
        crossinline t: Parser<T>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. src/fmt/scan.go

    		copy(r.pendBuf[r.pending:], r.buf[size:n])
    		r.pending += n - size
    	}
    	// Flip the bits of the rune so it's available to UnreadRune.
    	r.peekRune = ^rr
    	return
    }
    
    func (r *readRune) UnreadRune() error {
    	if r.peekRune >= 0 {
    		return errors.New("fmt: scanning called UnreadRune with no rune available")
    	}
    	// Reverse bit flip of previously read rune to obtain valid >=0 state.
    	r.peekRune = ^r.peekRune
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. docs/tr/docs/alternatives.md

    ### <a href="https://marshmallow.readthedocs.io/en/stable/" class="external-link" target="_blank">Marshmallow</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. src/crypto/ecdh/ecdh_test.go

    		// GenerateKey does rejection sampling. If the masking works correctly,
    		// the probability of a rejection is 1-ord(G)/2^ceil(log2(ord(G))),
    		// which for all curves is small enough (at most 2^-32, for P-256) that
    		// a bit flip is more likely to make this test fail than bad luck.
    		// Account for the extra MaybeReadByte byte, too.
    		if got, expected := r.n, len(k.Bytes())+1; got > expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    	expectCondition("")
    
    	// simulate envoy send xds requests
    	sendDownstreamWithNode(t, downstream, node)
    
    	// after lds sent, the caching healthcheck will be resent
    	expectCondition(status.StatusTrue)
    
    	// Flip status back and forth, ensure we update
    	proxy.sendHealthCheckRequest(healthy)
    	expectCondition(status.StatusTrue)
    	proxy.sendHealthCheckRequest(unhealthy)
    	expectCondition(status.StatusFalse)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pkg/registry/batch/job/strategy.go

    		// controllers meet the expectations of the clients of the Job API.
    		// For example, we verify that a Job in terminal state (Failed or Complete)
    		// does not flip to a non-terminal state.
    		//
    		// In the checks below we fail validation for Job status fields (or conditions) only if they change their values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

        // Construct a new array of input shapes excluding the input shapes of the
        // erased arguments.
        SmallVector<Attribute> updated_input_shapes_attr;
        for (const unsigned i : args_to_erase_bit_vector.flip().set_bits()) {
          updated_input_shapes_attr.emplace_back(input_shapes_attr[i]);
        }
    
        // Replaces the attribute with the updated "#tf_type.shape" array.
        // Builder builder(func_op.getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/endpointshards.go

    		// but we should not delete the keys from EndpointIndex map - that will trigger
    		// unnecessary full push which can become a real problem if a pod is in crashloop and thus endpoints
    		// flip flopping between 1 and 0.
    		e.DeleteServiceShard(shard, hostname, namespace, true)
    		log.Infof("Incremental push, service %s at shard %v has no endpoints", hostname, shard)
    		return IncrementalPush
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        final BloomFilter<Integer> bloomFilter =
            BloomFilter.create(Funnels.integerFunnel(), 15_000_000, 0.01);
    
        // This check has to be BEFORE the loop because the random insertions can
        // flip GOLDEN_PRESENT_KEY to true even if it wasn't explicitly inserted
        // (false positive).
        assertThat(bloomFilter.mightContain(GOLDEN_PRESENT_KEY)).isFalse();
        for (int i = 0; i < NUM_PUTS; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top