Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 168 for Concatenates (0.58 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        frame.writeAll(headerBlock)
    
        // Check writer sends the same bytes.
        assertThat(sendHeaderFrames(false, sentHeaders)).isEqualTo(frame)
    
        // Reading the above frames should result in a concatenated headerBlock.
        reader.nextFrame(
          requireSettings = false,
          object : BaseTestHandler() {
            override fun headers(
              inFinished: Boolean,
              streamId: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/script/cmds.go

    			return []int{i}
    		}
    		if arg == "--" {
    			return []int{i + 1}
    		}
    	}
    	return nil
    }
    
    // Cat writes the concatenated contents of the named file(s) to the script's
    // stdout buffer.
    func Cat() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "concatenate files and print to the script's stdout buffer",
    			Args:    "files...",
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    			value = bindingAnnotations[0]
    		} else {
    			// Multiple distinct values can exist when binding params are used in the valueExpression of an auditAnnotation.
    			// When this happens, the values are concatenated into a comma-separated list.
    			value = strings.Join(bindingAnnotations, ", ")
    		}
    		if err := attributes.AddAnnotation(policyName+"/"+key, value); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. docs/es/docs/python-types.md

    * Toma un `first_name` y un `last_name`.
    * Convierte la primera letra de cada uno en una letra mayúscula con `title()`.
    * Las <abbr title="las junta como si fuesen una. Con el contenido de una después de la otra. En inglés: concatenate.">concatena</abbr> con un espacio en la mitad.
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### Edítalo
    
    Es un programa muy simple.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/os/os_unix_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	buf, err := ReadFile(aa.Name())
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if got := string(buf); got != want {
    		t.Errorf("files not concatenated: got %q, want %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Strings.java

        for (int i = string.length(); i < minLength; i++) {
          sb.append(padChar);
        }
        return sb.toString();
      }
    
      /**
       * Returns a string consisting of a specific number of concatenated copies of an input string. For
       * example, {@code repeat("hey", 3)} returns the string {@code "heyheyhey"}.
       *
       * <p><b>Java 11+ users:</b> use {@code string.repeat(count)} instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  7. src/net/http/response.go

    	Proto      string // e.g. "HTTP/1.0"
    	ProtoMajor int    // e.g. 1
    	ProtoMinor int    // e.g. 0
    
    	// Header maps header keys to values. If the response had multiple
    	// headers with the same key, they may be concatenated, with comma
    	// delimiters.  (RFC 7230, section 3.2.2 requires that multiple headers
    	// be semantically equivalent to a comma-delimited sequence.) When
    	// Header values are duplicated by other fields in this struct (e.g.,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // -----
    
    // Tests that a quantized `stablehlo.concatenate` is converted to
    // `tfl.concatenation`.
    
    func.func @concatenate(
        %arg0: tensor<3x2x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
        %arg1: tensor<1x2x!quant.uniform<i8:f32, 2.000000e+00:-1>>
      ) -> tensor<4x2x!quant.uniform<i8:f32, 2.000000e+00:-1>> {
      %0 = "stablehlo.concatenate"(%arg0, %arg1) {dimension = 0 : i64} : (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

              rewriter.create<TFL::MinimumOp>(op->getLoc(), cast, upper_limit_cst);
        }
    
        Value concatenated = start_indices[0];
        if (rank > 1) {
          SmallVector<int64_t> begin_shape{rank};
          Type begin_type = operand_type.cloneWith(begin_shape, i64_type);
          concatenated = rewriter.create<TFL::ConcatenationOp>(
              op->getLoc(), begin_type, start_indices, /*axis=*/0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Strings.java

        for (int i = string.length(); i < minLength; i++) {
          sb.append(padChar);
        }
        return sb.toString();
      }
    
      /**
       * Returns a string consisting of a specific number of concatenated copies of an input string. For
       * example, {@code repeat("hey", 3)} returns the string {@code "heyheyhey"}.
       *
       * @param string any non-null string
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 09 00:49:18 UTC 2021
    - 12.3K bytes
    - Viewed (0)
Back to top