Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 141 for concatenation (0.32 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

            ret.setOperand(i, quantized.front());
          }
          i++;
        }
      });
    
      // We prefer to placing quantization emulation ops on the results of the
      // concat ops.
      func.walk([&](ConcatenationOp concat) {
        if (concat.getOutput().hasOneUse() &&
            Quantized(*concat.getOutput().user_begin())) {
          return;
        }
        concat.emitWarning(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                                           Value item_rank, Type result_type,
                                           PatternRewriter *rewriter) {
      // Create the start position of slice. This is done by concatenating
      // `start_index` and `partial_start_position` together.
      IntegerType shape_dtype = rewriter->getIntegerType(32);
      RankedTensorType position_type =
          tensorflow::GetTypeFromTFTensorShape({-1}, shape_dtype);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    */
    
    package workflow
    
    import (
    	"fmt"
    	"strings"
    
    	"github.com/pkg/errors"
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    )
    
    // phaseSeparator defines the separator to be used when concatenating nested
    // phase names
    const phaseSeparator = "/"
    
    // RunnerOptions defines the options supported during the execution of a
    // kubeadm composable workflows
    type RunnerOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

         * format. It should not contain any other PEM-encoded blocks, but it may contain other text
         * which will be ignored.
         *
         * Encode a held certificate into this format by concatenating the results of
         * [certificatePem()][certificatePem] and [privateKeyPkcs8Pem()][privateKeyPkcs8Pem].
         *
         * [rfc_7468]: https://tools.ietf.org/html/rfc7468
         * [rfc_5208]: https://tools.ietf.org/html/rfc5208
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    \"object.x__dash__prop > 0\"}\n  - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d > 0\"}\n\nEquality 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:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/jwks_resolver.go

    	"istio.io/istio/pkg/monitoring"
    )
    
    const (
    	// https://openid.net/specs/openid-connect-discovery-1_0.html
    	// OpenID Providers supporting Discovery MUST make a JSON document available at the path
    	// formed by concatenating the string /.well-known/openid-configuration to the Issuer.
    	openIDDiscoveryCfgURLSuffix = "/.well-known/openid-configuration"
    
    	// JwtPubKeyEvictionDuration is the life duration for cached item.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/slices/slices.go

    // Reverse reverses the elements of the slice in place.
    func Reverse[S ~[]E, E any](s S) {
    	for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {
    		s[i], s[j] = s[j], s[i]
    	}
    }
    
    // Concat returns a new slice concatenating the passed in slices.
    func Concat[S ~[]E, E any](slices ...S) S {
    	size := 0
    	for _, s := range slices {
    		size += len(s)
    		if size < 0 {
    			panic("len out of range")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/lookup.go

    func derefStructPtr(typ Type) Type {
    	if p, _ := under(typ).(*Pointer); p != nil {
    		if _, ok := under(p.base).(*Struct); ok {
    			return p.base
    		}
    	}
    	return typ
    }
    
    // concat returns the result of concatenating list and i.
    // The result does not share its underlying array with list.
    func concat(list []int, i int) []int {
    	var t []int
    	t = append(t, list...)
    	return append(t, i)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/go/types/lookup.go

    func derefStructPtr(typ Type) Type {
    	if p, _ := under(typ).(*Pointer); p != nil {
    		if _, ok := under(p.base).(*Struct); ok {
    			return p.base
    		}
    	}
    	return typ
    }
    
    // concat returns the result of concatenating list and i.
    // The result does not share its underlying array with list.
    func concat(list []int, i int) []int {
    	var t []int
    	t = append(t, list...)
    	return append(t, i)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    \"object.x__dash__prop > 0\"}\n  - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d > 0\"}\n\nEquality 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:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top