Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for Constant2 (0.21 sec)

  1. pilot/pkg/model/sidecar_test.go

    				}
    			}
    			if tt.virtualServices != nil {
    				// nolint lll
    				ps.virtualServiceIndex.publicByGateway[constants.IstioMeshGateway] = append(ps.virtualServiceIndex.publicByGateway[constants.IstioMeshGateway], tt.virtualServices...)
    			}
    
    			ps.exportToDefaults = exportToDefaults{
    				virtualService:  sets.New(visibility.Public),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

        feed2_ = Placeholder(graph_, s_, "feed2");
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
        constant_ = ScalarConst(10, graph_, s_);
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
        desc_ = TF_NewOperation(graph_, "AddN", "add");
        TF_Output inputs[] = {{feed1_, 0}, {constant_, 0}};
        TF_AddInputList(desc_, inputs, TF_ARRAYSIZE(inputs));
      }
    
      ~CApiColocationTest() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

        %cst_2 = "tfl.no_value"() {value = unit} : () -> none
        %cst_3 = arith.constant dense<1.0> : tensor<20x20xf32>
        %cst_7 = arith.constant dense<1.0> : tensor<20xf32>
        %cst_11 = arith.constant dense<1.0> : tensor<20x28xf32>
        %recurrent_input = arith.constant dense<1.0> : tensor<1x20xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    			vs: config.Config{
    				Meta: config.Meta{
    					Namespace: "ns",
    					Name:      "foo-0-istio-autogenerated-k8s-gateway",
    					Annotations: map[string]string{
    						constants.InternalRouteSemantics: constants.RouteSemanticsGateway,
    						constants.InternalParentNames:    "HTTPRoute/foo.ns,HTTPRoute/bar.ns",
    					},
    				},
    			},
    			want: []ConfigKey{
    				{
    					Kind:      kind.HTTPRoute,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      %identity = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
      return %identity : tensor<i32>
    }
    ```
    ### `-tf-device-constant-sinking`
    
    _Sinks constants implicitly captured in a tf_device.cluster region._
    
    This pass sinks implicitly captured constants (`tf.Const` ops) used by and into
    a `tf_device.cluster` region. Performing this prior to outlining will reduce the
    number of arguments of the outlined function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/adminlte.min.js.map

    kBAGTiK,EA1NO,CA2NbpJ","sourcesContent":["/**\n * --------------------------------------------\n * AdminLTE ControlSidebar.js\n * License MIT\n * --------------------------------------------\n */\n\nconst ControlSidebar = (($) => {\n  /**\n   * Constants\n   * ====================================================\n   */\n\n  const NAME               = 'ControlSidebar'\n  const DATA_KEY           = 'lte.controlsidebar'\n  const EVENT_KEY          = `.${DATA_KEY}`\n  const JQUERY_NO_CONFLICT = $.fn[NAME]\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    			// Lucky13, the data past paddingLen (which is secret) is passed to
    			// the MAC function as extra data, to be fed into the HMAC after
    			// computing the digest. This makes the MAC roughly constant time as
    			// long as the digest computation is constant time and does not
    			// affect the subsequent write, modulo cache effects.
    			paddingLen, paddingGood = extractPadding(payload)
    		default:
    			panic("unknown cipher type")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    		if v&^0xff == 0 {
    			return int32(uint32(int32(i)<<8) | v | 1<<25)
    		}
    		v = v<<2 | v>>30
    	}
    
    	return 0
    }
    
    // immrot2a returns bits encoding the immediate constant fields of two instructions,
    // such that the encoded constants x, y satisfy x|y==v, x&y==0.
    // Returns 0,0 if no such decomposition of v exists.
    func immrot2a(v uint32) (uint32, uint32) {
    	for i := uint(1); i < 32; i++ {
    		m := uint32(1<<i - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // have noted are most likely needed to make it work.
    // - The string used with VPERM to swap the byte order
    //   for loads and stores.
    // - The constants that are loaded from CPOOL.
    //
    
    // The following constants are defined in an order
    // that is correct for use with LXVD2X/STXVD2X
    // on little endian.
    DATA p256<>+0x00(SB)/8, $0xffffffff00000001 // P256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // output type doesn't have to be static but if input types and indices are
        // constant, then the output type can be statically determined.
        RankedTensorType out_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!out_ty || !out_ty.hasStaticShape()) return failure();
    
        // Extract out all the constant indices' attributes and verify that data
        // types are static.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top