Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for Tconstants (0.3 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            TF_RETURN_IF_ERROR(
                RenumberArguments(subgraph->get(), *input_permutation));
    
            // TODO(phawkins): add a forward is-constant analysis, similarly split
            // outputs into host-memory constants and device-memory non-constants.
    
            AddNodeAttr(kXlaCompiledKernelAttr, true, node);
            AddNodeAttr(kXlaNumConstantArgsAttr, num_consts, node);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                        problems.add(new ModelProblemCollectorRequest(Severity.FATAL, ModelProblem.Version.V31)
                                .setMessage("Version must be a constant")
                                .setLocation(childModel.getLocation("")));
    
                    } else {
                        if (rawChildVersionReferencesParent(rawChildModelVersion)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			curr:     &updatedSvc,
    			prevConv: kube.ConvertService(svc, constants.DefaultClusterLocalDomain, "", nil),
    			currConv: kube.ConvertService(updatedSvc, constants.DefaultClusterLocalDomain, "", nil),
    			expect:   true,
    		},
    		testcase{
    			name:     "target ports unchanged",
    			prev:     &svc,
    			curr:     &svc,
    			prevConv: kube.ConvertService(svc, constants.DefaultClusterLocalDomain, "", nil),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    )
    
    var execTests = []execTest{
    	// Trivial cases.
    	{"empty", "", "", nil, true},
    	{"text", "some text", "some text", nil, true},
    	{"nil action", "{{nil}}", "", nil, false},
    
    	// Ideal constants.
    	{"ideal int", "{{typeOf 3}}", "int", 0, true},
    	{"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
    	{"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
    	{"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    		}
    		m := mesh.DefaultMeshConfig()
    		var nodeMeta *model.NodeMetadata
    		if ambient {
    			nodeMeta = &model.NodeMetadata{EnableHBONE: true}
    			pod = pod.DeepCopy()
    			pod.Annotations[constants.AmbientRedirection] = constants.AmbientRedirectionEnabled
    		}
    		opts := xds.FakeOptions{MeshConfig: m}
    		t.Run("ambient "+name, func(t *testing.T) {
    			t.Run("ServiceEntry selects Pod: update service entry", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	authenticationv1 "k8s.io/api/authentication/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/ptr"
    	echot "istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Trunc(16|32|64)to8  x) => (MOVBZreg x)
    (Trunc(32|64)to16 <t> x) && t.IsSigned() => (MOVHreg x)
    (Trunc(32|64)to16 x) => (MOVHZreg x)
    (Trunc64to32 <t> x) && t.IsSigned() => (MOVWreg x)
    (Trunc64to32 x) => (MOVWZreg x)
    
    // Lowering constants
    (Const(64|32|16|8) [val]) => (MOVDconst [int64(val)])
    (Const(32|64)F ...) => (FMOV(S|D)const ...)
    (ConstNil) => (MOVDconst [0])
    (ConstBool [t]) => (MOVDconst [b2i(t)])
    
    // Carrying addition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	nwmICMPGStatsEntry     = 0xd5e6d4c9c3d4d7c7
    	nwmICMPTStatsEntry     = 0xd5e6d4c9c3d4d7e3
    
    	// nwmHeader constants
    	nwmVersion1   = 1
    	nwmVersion2   = 2
    	nwmCurrentVer = 2
    
    	nwmTCPConnType     = 1
    	nwmGlobalStatsType = 14
    
    	// nwmFilter constants
    	nwmFilterLclAddrMask = 0x20000000 // Local address
    	nwmFilterSrcAddrMask = 0x20000000 // Source address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/types/type.go

    	constant.Bool:    UntypedBool,
    	constant.String:  UntypedString,
    	constant.Int:     UntypedInt,
    	constant.Float:   UntypedFloat,
    	constant.Complex: UntypedComplex,
    }
    
    // DefaultKinds maps from a constant.Kind to its default Kind.
    var DefaultKinds = [...]Kind{
    	constant.Bool:    TBOOL,
    	constant.String:  TSTRING,
    	constant.Int:     TINT,
    	constant.Float:   TFLOAT64,
    	constant.Complex: TCOMPLEX128,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top