Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for pirates (0.18 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        pass_manager->addNestedPass<mlir::func::FuncOp>(
            mlir::TFL::CreateOptimizePass(/*enable_canonicalization=*/true,
                                          toco_flags.disable_fuse_mul_and_fc()));
    
        // This pass operates on TensorFlow ops but is triggered after legalization
        // so that it can target constants introduced once TensorFlow Identity ops
        // are removed during legalization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	return g()
    }
    
    // Future creates a Getter for a variable the custom echo deployment that will be set at sometime in the future.
    // This is helpful for configuring a setup chain for a test suite that operates on global variables.
    func ConfigFuture(custom *[]Config) ConfigGetter {
    	return func() []Config {
    		return *custom
    	}
    }
    
    // NamespaceName returns the string name of the namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/math/big/arith_arm64.s

    	UMULH	R5, R3, R8
    
    	ADDS	R4, R6
    	ADCS	R13, R11
    	ADC	$0, R12
    
    	ADDS	R7, R6
    	ADCS	R8, R11
    	ADC	$0, R12, R4
    
    	STP.P	(R6, R11), 16(R1)
    	SUB	$2, R0
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. architecture/ambient/ztunnel.md

    Requests leaving a pod go through the "outbound" code path on port 15001.
    This is where most of Ztunnel's logic lives.
    
    For outbound traffic, we need to first determine where the traffic is destined to.
    As Ztunnel operates at L4, we only have the destination IP/port (recovered via `SO_ORIGINAL_DST`).
    This may be an IP of a Service, a Pod, or something outside the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

        // internal op perfectly. Hence this assertion should never fail.
        assert(island.WrapsSingleOp());
        Operation& op = island.GetBody().front();
    
        // If the op only operates on resources stored on devices that are
        // "COMPOSITE", then this op is defined to work in parallel with other
        // TPUExecute* ops. So we can make all ResourceIds device-specific below.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. docs/pt/docs/index.md

    ## Requisitos
    
    FastAPI está nos ombros de gigantes:
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> para as partes web.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> para a parte de dados.
    
    ## Instalação
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repairip.go

    //
    // Handles:
    // * Duplicate ClusterIP assignments caused by operator action or undetected race conditions
    // * Allocations to services that were not actually created due to a crash or powerloss
    // * Migrates old versions of Kubernetes services into the new ipallocator automatically
    //   creating the corresponding IPAddress objects
    // * IPAddress objects with wrong references or labels
    //
    // Logs about:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          // The side effects of the If op might not be executed without an
          // explicit control dependency on the tf.If op, due to the way the
          // LowerFunctionalOpsPass in TF operates (b/185483669). Check that we
          // output an explicit control dependency on the tf.If op in this case to
          // be on the safe side.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        double actualReportedFpp = bf.expectedFpp();
        assertEquals(expectedReportedFpp, actualReportedFpp, 0.00033);
      }
    
      /** Sanity checking with many combinations of false positive rates and expected insertions */
      public void testBasic() {
        for (double fpr = 0.0000001; fpr < 0.1; fpr *= 10) {
          for (int expectedInsertions = 1; expectedInsertions <= 10000; expectedInsertions *= 10) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    func (p *P256Point) SetBytes(b []byte) (*P256Point, error) {
    	// p256Mul operates in the Montgomery domain with R = 2²⁵⁶ mod p. Thus rr
    	// here is R in the Montgomery domain, or R×R mod p. See comment in
    	// P256OrdInverse about how this is used.
    	rr := p256Element{0x0000000000000003, 0xfffffffbffffffff,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top