Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for Tconstants (0.29 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            String httpAddress = SystemUtil.getSearchEngineHttpAddress();
            if (StringUtil.isBlank(httpAddress) && (runner == null)) {
                switch (fessConfig.getFesenType()) {
                case Constants.FESEN_TYPE_CLOUD:
                case Constants.FESEN_TYPE_AWS:
                    httpAddress = org.codelibs.fess.util.ResourceUtil.getFesenHttpUrl();
                    break;
                default:
                    runner = new OpenSearchRunner();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      if (!shaped_type) {
        return errors::Internal("Constant doesn't have a shape");
      }
      auto op = builder.create<tfl::ExternalConstOp>(
          loc, shaped_type, builder.getI32IntegerAttr(buffer_index));
      return op.getOperation();
    }
    
    // TODO(b/172664358): Creates a new op instead of reusing constant op.
    // Creates a constant op with "tfl.is_variable" attribute to represent stateful
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

          %cst_4 = arith.constant dense<[0, 0, 1, 1, 1]> : tensor<5xi32>
          %cst_5 = arith.constant dense<[0, 1, 0, 1, 1]> : tensor<5xi32>
          %cst_6 = arith.constant dense<2> : tensor<i32>
          %cst_7 = arith.constant dense<"*"> : tensor<!tf_type.string>
          %cst_8 = arith.constant dense<-1> : tensor<1xi32>
          %cst_9 = arith.constant dense<-1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    				vs.Http = append(vs.Http, routes...)
    				// append parents
    				cfg.Annotations[constants.InternalParentNames] = fmt.Sprintf("%s,%s/%s.%s",
    					cfg.Annotations[constants.InternalParentNames], obj.GroupVersionKind.Kind, obj.Name, obj.Namespace)
    			} else {
    				name := fmt.Sprintf("%s-%d-%s", obj.Name, count, constants.KubernetesGatewayName)
    				routeMap[routeKey][h] = &config.Config{
    					Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    			gateway:   constants.IstioMeshGateway,
    		},
    		{
    			proxyNs:   "test2",
    			wantHosts: []string{"rule2.com", "rule2gw.com", "rule3.com", "rootNS.com"},
    			gateway:   constants.IstioMeshGateway,
    		},
    		{
    			proxyNs:   "ns1",
    			wantHosts: []string{"rule1.com", "rule2.com", "rule2gw.com", "rule3.com", "rootNS.com"},
    			gateway:   constants.IstioMeshGateway,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Rsh8Ux64 _ (Const64 [c])) && uint64(c) >= 8 => (Const8 [0])
    
    // large constant signed right shift, we leave the sign bit
    (Rsh32x64 x (Const64 [c])) && uint64(c) >= 32 => (SRAconst x [31])
    (Rsh16x64 x (Const64 [c])) && uint64(c) >= 16 => (SRAconst (SLLconst <typ.UInt32> x [16]) [31])
    (Rsh8x64 x (Const64 [c])) && uint64(c) >= 8 => (SRAconst (SLLconst <typ.UInt32> x [24]) [31])
    
    // constants
    (Const(8|16|32) [val]) => (MOVWconst [int32(val)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    				svcListenAddress == constants.UnspecifiedIP {
    				svcListenAddress = constants.UnspecifiedIPv6
    			}
    
    			// For dualstack proxies we need to add the unspecifed ipv6 address to the list of extra listen addresses
    			if listenerOpts.service.Attributes.ServiceRegistry == provider.External && listenerOpts.proxy.IsDualStack() &&
    				svcListenAddress == constants.UnspecifiedIP {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $input_neg_out)]>;
    
    // The constant folding in this pass might produce constant in the tf dialect.
    // This rule is to legalize these constant to the tfl dialect.
    def LegalizeConstOp : Pat<
      (TF_ConstOp ElementsAttr:$value), (TFL_ConstOp $value)>;
    
    // Reorders adds to allow constant folding.
    // Add --> Add $input, $constantA
    //    \--> $constantB
    // To
    // Add --> $input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. 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)
Back to top