Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 127 for concatenation (0.91 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   - 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 Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server.go

    }
    
    // handleStats handles prometheus stats scraping. This will scrape envoy metrics, and, if configured,
    // the application metrics and merge them together.
    // The merge here is a simple string concatenation. This works for almost all cases, assuming the application
    // is not exposing the same metrics as Envoy.
    // This merging works for both FmtText and FmtOpenMetrics and will use the format of the application metrics
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  3. src/net/http/server.go

    //
    // Additionally, files containing a certificate and matching private key
    // for the server must be provided. If the certificate is signed by a
    // certificate authority, the certFile should be the concatenation
    // of the server's certificate, any intermediates, and the CA's certificate.
    //
    // ServeTLS always returns a non-nil error.
    func ServeTLS(l net.Listener, handler Handler, certFile, keyFile string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return success();
      }
    };
    
    // Fuses Unpack with proceeding Concatenation to Reshape if output type has
    // static shape and activation function is none. For example:
    //
    //   // %input: tensor<1x3x2xf32>
    //   %unpack:3 = "tfl.unpack"(%input) {axis = 1 : i32, num = 3 : i32}
    //   %res = "tfl.concatenation"(%unpack#0, %unpack#1, %unpack#2)
    //        {axis = -1 : i32, fused_activation_function = "NONE"}
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. operator/pkg/translate/translate.go

    	tmpl := `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: {{ .Namespace }}
      name: {{ .Name }} 
    `
    	// Passing into template causes reformatting, use simple concatenation instead.
    	tmpl += spec
    
    	type Temp struct {
    		Namespace string
    		Name      string
    	}
    	ts := Temp{
    		Namespace: namespace,
    		Name:      name,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

      // which are produced by the ops with the `FixedOutputRangeInterface`.
      // Note that we don't propagate across the multiple-operands
      // `SameOperandsAndResultsScale` ops like `concatenation`.
      func.walk([&](quantfork::StatisticsOp stats_op) {
        all_stats_ops.push_back(stats_op);
      });
    
      while (!all_stats_ops.empty()) {
        quantfork::StatisticsOp stats_op = all_stats_ops.back();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     * </pre>
     *
     * <p>Each task has a name, which can be used to refer to the task within its owning project, and a fully qualified
     * path, which is unique across all tasks in all projects. The path is the concatenation of the owning project's path
     * and the task's name. Path elements are separated using the {@value org.gradle.api.Project#PATH_SEPARATOR}
     * character.</p>
     *
     * <h3>Task Actions</h3>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/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 Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      return -1;
    }
    
    //===----------------------------------------------------------------------===//
    // ConcatenationOp
    //===----------------------------------------------------------------------===//
    // TODO(ashwinm): Implement shape inference for Concatenation
    
    namespace {
    
    int64_t GetConcatenationOpAxis(ConcatenationOp op) {
      auto output_type = op.getOutput().getType().cast<RankedTensorType>();
      int32_t axis = op.getAxis();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    shutdown time public void stop() { ... log.info("MyComponent stopped"); ... } // Called repeatedly to process a particular argument value // which you want logged if debugging is enabled public void process(String value) { ... // Do the string concatenation only if logging is enabled if (log.isDebugEnabled()) log.debug("MyComponent processing " + value); ... } } META-INF/LICENSE.txt Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 37.1K bytes
    - Viewed (0)
Back to top