Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,148 for Constant2 (0.17 sec)

  1. tools/istio-iptables/pkg/constants/constants.go

    		``)
    )
    
    const (
    	DefaultProxyUID    = "1337"
    	DefaultProxyUIDInt = int64(1337)
    )
    
    // Constants used in environment variables
    const (
    	EnvoyUser = "ENVOY_USER"
    )
    
    // Constants for syscall
    const (
    	// sys/socket.h
    	SoOriginalDst = 80
    )
    
    const (
    	DefaultIptablesProbePortUint = 15002
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tests/fold-constants-to-subgraph.mlir

    // Test for partial folding: only fold i32 constants.
    // RUN: tac-opt-all-backends -tfl-fold-constants-to-subgraph='fold-all-constants=false' %s -split-input-file -verify-diagnostics | FileCheck --check-prefix=PARTIAL %s
    
    // Test for fold all constants.
    // RUN: tac-opt-all-backends -tfl-fold-constants-to-subgraph='fold-all-constants=true' %s -split-input-file -verify-diagnostics | FileCheck --check-prefix=ALL %s
    
    module {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

    func.func @testConcatOffsetWithZeros() -> (tensor<3xi32>, tensor<3xi32>, tensor<3xi32>, tensor<3xi32>) {
      %concat_dim = arith.constant dense<1> : tensor<i32>
      %shape0 = arith.constant dense<0> : tensor<3xi32>
      %shape1 = arith.constant dense<[0, 3, 0]> : tensor<3xi32>
      %shape2 = arith.constant dense<[0, 5, 0]> : tensor<3xi32>
      %shape3 = arith.constant dense<0> : tensor<3xi32>
    
      // CHECK-DAG: [[OFFSET_0:%.*]] = "tf.Const{{.*}} dense<0> : tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/constants.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"regexp"
    
    	"istio.io/istio/pkg/config/constants"
    )
    
    const (
    	DefaultClusterLocalDomain  = "svc." + constants.DefaultClusterLocalDomain
    	ExportToNamespaceLocal     = "."
    	ExportToAllNamespaces      = "*"
    	IstioProxyName             = "istio-proxy"
    	IstioOperator              = "istio-operator"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java

     */
    package org.codelibs.fess.crawler;
    
    import java.nio.charset.Charset;
    import java.nio.charset.StandardCharsets;
    
    /**
     * @author shinsuke
     *
     */
    public final class Constants {
        public static final String GET_METHOD = "GET";
    
        public static final String HEAD_METHOD = "HEAD";
    
        public static final String POST_METHOD = "POST";
    
        public static final int OK_STATUS = 0;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. test/codegen/constants.go

    // asmcheck
    
    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    // A uint16 or sint16 constant shifted left.
    func shifted16BitConstants(out [64]uint64) {
    	// ppc64x: "MOVD\t[$]8193,", "SLD\t[$]27,"
    	out[0] = 0x0000010008000000
    	// ppc64x: "MOVD\t[$]-32767", "SLD\t[$]26,"
    	out[1] = 0xFFFFFE0004000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 14:03:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: [[FROM_ELEMENTS:%.*]] = tensor.from_elements [[INDEX_CAST]] : tensor<1xi64>
      // CHECK: [[CONSTANT2:%.*]] = mhlo.constant dense<16> : tensor<1xi64>
      // CHECK: [[CONCATENATE:%.*]] = "mhlo.concatenate"([[CONSTANT1]], [[FROM_ELEMENTS]], [[CONSTANT2]]) <{dimension = 0 : i64}> : (tensor<1xi64>, tensor<1xi64>, tensor<1xi64>) -> tensor<3xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

     */
    package org.codelibs.fess;
    
    import java.util.TimeZone;
    import java.util.regex.Pattern;
    
    import org.codelibs.core.CoreLibConstants;
    import org.codelibs.core.lang.StringUtil;
    
    public class Constants extends CoreLibConstants {
    
        public static final String LINE_SEPARATOR = System.lineSeparator();
    
        public static final int DEFAULT_ADMIN_PAGE_NUMBER = 1;
    
        public static final String TRUE = "true";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/constant-folding.mlir

        func.return %1 : tensor<10x19xf32>
      }
    }
    
    // Tests that foldable ops are constant-folded to enable legalization of ops
    // that require compile time constant operand.
    // "tf.Shape" can only be folded away after shape inference. tf.Reshape can only
    // be lowered when tf.Shape is folded into a constant.
    
    // CHECK-LABEL: HloModule main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 25 02:54:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // Ensure constants roundtrip exactly
    
    func.func @bool() -> tensor<4xi1> {
      // CHECK-LABEL: @bool
      // CHECK: value = dense<[false, true, true, false]> : tensor<4xi1>
      %0 = "tfl.pseudo_const"() { value = dense<[false, true, true, false]> : tensor<4xi1> } : () -> tensor<4xi1>
      func.return %0 : tensor<4xi1>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top