Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 168 for Concatenates (0.27 sec)

  1. src/cmd/cgo/internal/test/buildid_linux.go

    // license that can be found in the LICENSE file.
    
    package cgotest
    
    // Test that we have no more than one build ID.  In the past we used
    // to generate a separate build ID for each package using cgo, and the
    // linker concatenated them all.  We don't want that--we only want
    // one.
    
    import (
    	"bytes"
    	"debug/elf"
    	"os"
    	"testing"
    )
    
    func testBuildID(t *testing.T) {
    	f, err := elf.Open("/proc/self/exe")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. api/README

    warning output from the go api tool. Each file should be named
    nnnnn.txt, after the issue number for the accepted proposal.
    (The #nnnnn suffix must also appear at the end of each line in the file;
    that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
    
    When you add a file to the api/next directory, you must add at least one file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op_stablehlo.mlir

        %3 = stablehlo.concatenate %2, %1, dim = 0 : (tensor<1x3xf32>, tensor<1x3xf32>) -> tensor<2x3xf32>
        return %3 : tensor<2x3xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. test/fixedbugs/issue29362b.go

    // In the second, only p is live, so that bitmap is 10.
    // Bitmaps are byte aligned, so if the first bitmap is interpreted as
    // extending across the entire argument area, we incorrectly concatenate
    // the bitmaps and end up using 110000001. That bad bitmap causes a6
    // to be considered a pointer.
    func noPointerArgs(p, q *byte, a0, a1, a2, a3, a4, a5, a6 uintptr) {
    	sink = make([]byte, 4096)
    	sinkptr = q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 03 23:37:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_ConcatOp : TF_Op<"Concat", [Pure]> {
      let summary = "Concatenates tensors along one dimension.";
    
      let arguments = (ins
        Arg<TF_Int32Tensor, [{0-D.  The dimension along which to concatenate.  Must be in the
    range [0, rank(values)).}]>:$concat_dim,
        Arg<Variadic<TF_Tensor>, [{The `N` Tensors to concatenate. Their ranks and types must match,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. src/go/ast/print_test.go

    		1  .  X: 42
    		2  }`},
    	{struct{ X, Y int }{42, 991},
    		`0  struct { X int; Y int } {
    		1  .  X: 42
    		2  .  Y: 991
    		3  }`},
    }
    
    // Split s into lines, trim whitespace from all lines, and return
    // the concatenated non-empty lines.
    func trim(s string) string {
    	lines := strings.Split(s, "\n")
    	i := 0
    	for _, line := range lines {
    		line = strings.TrimSpace(line)
    		if line != "" {
    			lines[i] = line
    			i++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        CharSource concatenated = CharSource.concat(cycle);
    
        String expected = "abcdabcd";
    
        // read the first 8 chars manually, since there's no equivalent to ByteSource.slice
        // TODO(cgdecker): Add CharSource.slice?
        StringBuilder builder = new StringBuilder();
        Reader reader = concatenated.openStream(); // no need to worry about closing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/expiry/AllDaemonExpirationStrategyTest.groovy

            then:
            DaemonExpirationResult result = agg.checkExpiration()
            result.status == DO_NOT_EXPIRE
            result.reason == null
        }
    
        def "doesn't concatenate a null reason"() {
            given:
            AllDaemonExpirationStrategy agg = new AllDaemonExpirationStrategy([c1, c2])
    
            when:
            1 * c1.checkExpiration() >> { new DaemonExpirationResult(GRACEFUL_EXPIRE, null) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

        /**
         * Adds an output entry to the group.
         */
        public void addOutput(String output) {
            outputs.add(output);
        }
    
        /**
         * Returns concatenated non-empty output entries.
         */
        public String getOutput() {
            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize.mlir

      %2 = "stablehlo.concatenate"(%0, %1) {dimension = 0 : i64} : (tensor<?xf32>, tensor<?xf32>) -> tensor<?xf32>
      %3 = "quantfork.stats"(%2) {layerStats = dense<[-0.83811146, 2.4960899]> : tensor<2xf32>} : (tensor<?xf32>) -> tensor<?xf32>
      %4 = "quantfork.stats"(%arg2) {layerStats = dense<[-1.5726943, 1.07351148]> : tensor<2xf32>} : (tensor<?xf32>) -> tensor<?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 19:52:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top