Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 142 for concatenation (0.37 sec)

  1. releasenotes/notes/gateway-naming.yaml

      - https://github.com/istio/istio/pull/43103
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Improved** Gateway naming conventions to be concatenation of `Name` and `GatewayClassName`. 
      Deployment also now deploys with its own Service Account, rather than using the `default` token. 
      Naming convention affects name of Deployment, Service and Service Account.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 06 14:56:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            expect:
            def result = resolve(include('TEST()'))
            !result.complete
            result.files.empty
        }
    
        def "resolves token concatenation to a macro and then to file"() {
            given:
            def header = systemIncludeDir.createFile("test.h")
    
            macros << macro("TEST", 'FILE##NAME')
            macros << macro("FILENAME", '"test.h"')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. src/compress/gzip/gunzip.go

    }
    
    // A Reader is an [io.Reader] that can be read to retrieve
    // uncompressed data from a gzip-format compressed file.
    //
    // In general, a gzip file can be a concatenation of gzip files,
    // each with its own header. Reads from the Reader
    // return the concatenation of the uncompressed data of each.
    // Only the first header is recorded in the Reader fields.
    //
    // Gzip files store a length and checksum of the uncompressed data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_legalize_hlo.mlir

    // CHECK-NEXT:      %10 = "tfl.pseudo_const"() <{value = dense<4> : tensor<1xi32>}> : () -> tensor<1xi32>
    // CHECK-NEXT:      %11 = "tfl.concatenation"(%10, %9, %8) <{axis = 0 : i32, fused_activation_function = "NONE"}> : (tensor<1xi32>, tensor<1xi32>, tensor<1xi32>) -> tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/tests/e2e/device-transform-nnapi.mlir

        func.return %0 : tensor<2x1xf32>
        // CHECK: %[[VAL_0:.*]] = arith.constant dense<[2, 1]> : tensor<2xi32>
        // CHECK: %[[CONCAT:.*]] = "tfl.concatenation"(%arg0, %arg1) <{axis = 0 : i32, fused_activation_function = "NONE"}> : (tensor<1xf32>, tensor<1xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/internal/telemetry/telemetry.go

    // and increments the counter. The name of the counter is
    // the concatenation of prefix and the flag name.
    func CountFlags(prefix string, flagSet flag.FlagSet) {
    	counter.CountFlags(prefix, flagSet)
    }
    
    // CountFlagValue creates a counter for the flag value
    // if it is set and increments the counter. The name of the
    // counter is the concatenation of prefix, the flagName, ":",
    // and value.String() for the flag's value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/quantization.mlir

      %cst = "tfl.pseudo_qconst"() {qtype = tensor<1x2x!quant.uniform<u8:f32, 1.0>>, value = dense<-76> : tensor<1x2xi8>} : () -> tensor<1x2x!quant.uniform<u8:f32, 1.0>>
      %2 = "tfl.concatenation"(%1, %cst) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<1x2x!quant.uniform<u8:f32, 1.0>>, tensor<1x2x!quant.uniform<u8:f32, 1.0>>) -> tensor<2x2x!quant.uniform<u8:f32, 1.0>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Describable.java

    /**
     * Types can implement this interface when they provide a human-readable display name.
     * It is strongly encouraged to compute this display name lazily: computing a display name,
     * even if it's only a string concatenation, can take a significant amount of time during
     * configuration for something that would only be used, typically, in error messages.
     *
     * @since 3.4
     */
    public interface Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/nnapi_hardware.cc

        return true;
      }
    };
    
    std::unique_ptr<TargetHardwareOperation> CreateBasicOpNoCost() {
      return std::make_unique<NNAPIBasicSupportedOpNoCost>();
    }
    
    // Currently used for these ops:
    // tfl.concatenation / tfl.reshape / tfl.pack
    class NNAPIConcatOp : public TargetHardwareOperation {
      double GetOpCost(mlir::Operation* op) const override {
        int64_t count;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/errors/join.go

    package errors
    
    import (
    	"unsafe"
    )
    
    // Join returns an error that wraps the given errors.
    // Any nil error values are discarded.
    // Join returns nil if every value in errs is nil.
    // The error formats as the concatenation of the strings obtained
    // by calling the Error method of each element of errs, with a newline
    // between each string.
    //
    // A non-nil error returned by Join implements the Unwrap() []error method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 18:37:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top