Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for concatenation (0.45 sec)

  1. cmd/iam.go

    // AssumeRoleWithCertificate case, the "virtual" parent user is the value of the
    // `Subject.CommonName` field. For the OIDC (without RoleARN) case the "virtual"
    // parent is derived as a concatenation of the `sub` and `iss` fields. The
    // policies applicable to the STS credential are associated with this "virtual"
    // parent.
    //
    // When a policyName is given to this function, the policy association is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    				slotIdx++
    			}
    		}
    		start = false
    	}
    }
    
    // funcNamePiecesForPrint returns the function name for printing to the user.
    // It returns three pieces so it doesn't need an allocation for string
    // concatenation.
    func funcNamePiecesForPrint(name string) (string, string, string) {
    	// Replace the shape name in generic function with "...".
    	i := bytealg.IndexByteString(name, '[')
    	if i < 0 {
    		return name, "", ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
    	//
    	// Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
    	// Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    func logRule(s string) {
    	if ruleFile == nil {
    		// Open a log file to write log to. We open in append
    		// mode because all.bash runs the compiler lots of times,
    		// and we want the concatenation of all of those logs.
    		// This means, of course, that users need to rm the old log
    		// to get fresh data.
    		// TODO: all.bash runs compilers in parallel. Need to synchronize logging somehow?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    		{"", "go1.99", "p:2:9: file requires newer Go version go1.99"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/reflect/type.go

    func (f StructField) IsExported() bool {
    	return f.PkgPath == ""
    }
    
    // A StructTag is the tag string in a struct field.
    //
    // By convention, tag strings are a concatenation of
    // optionally space-separated key:"value" pairs.
    // Each key is a non-empty string consisting of non-control
    // characters other than space (U+0020 ' '), quote (U+0022 '"'),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. doc/go_spec.html

    </pre>
    
    <h4 id="String_concatenation">String concatenation</h4>
    
    <p>
    Strings can be concatenated using the <code>+</code> operator
    or the <code>+=</code> assignment operator:
    </p>
    
    <pre>
    s := "hi" + string(c)
    s += " and good bye"
    </pre>
    
    <p>
    String addition creates a new string by concatenating the operands.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    		{"", "go1.99", "p:2:9: file requires newer Go version go1.99"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      }
    
      auto lhs_new_concat = rewriter.create<mhlo::ConcatenateOp>(
          concat->getLoc(), concat.getType().clone(lhs_new_concat_shape),
          all_dot_lhs, rewriter.getI64IntegerAttr(lhs_batch_dim));
      auto rhs_new_concat = rewriter.create<mhlo::ConcatenateOp>(
          concat->getLoc(), concat.getType().clone(rhs_new_concat_shape),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    </pre>
    
    <h4 id="String_concatenation">String concatenation</h4>
    
    <p>
    Strings can be concatenated using the <code>+</code> operator
    or the <code>+=</code> assignment operator:
    </p>
    
    <pre>
    s := "hi" + string(c)
    s += " and good bye"
    </pre>
    
    <p>
    String addition creates a new string by concatenating the operands.
    </p>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top