Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for Tconstants (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <p>All objects <b>MUST</b> expose their name as a bean property named "name". The name must be constant for the life of the object.</p>
         *
         * @param type The type of objects for the container to contain.
         * @param <T> The type of objects for the container to contain.
         * @return The container.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    def TF_ConstOp : TF_Op<"Const", [ConstantLike, Pure,
        DeclareOpInterfaceMethods<InferTypeOpInterface>,
        DeclareOpInterfaceMethods<OpAsmOpInterface, ["getAsmResultNames"]>]> {
      let summary = "Constant tensor op";
    
      let arguments = (ins
        ElementsAttr:$value
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/BUILD

            "//tensorflow/python/...",
        ],
    )
    
    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    )
    
    # defs.cc/h only contains string constants, and can be included in mobile
    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    		// Handle constant to register moves.
    		if p.As != AMOV {
    			p.Ctxt.Diag("%v: unsupported constant load", p)
    			return nil
    		}
    
    		// For constants larger than 32 bits in size that have trailing zeros,
    		// use the value with the trailing zeros removed and then use a SLLI
    		// instruction to restore the original constant.
    		// For example:
    		// 	MOV $0x8000000000000000, X10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	triggerRatioDen = 64
    
    	// The minimum trigger constant was chosen empirically: given a sufficiently
    	// fast/scalable allocator with 48 Ps that could drive the trigger ratio
    	// to <0.05, this constant causes applications to retain the same peak
    	// RSS compared to not having this allocator.
    	minTriggerRatioNum = 45 // ~0.7
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	XTY_ENT = 0x20 // Entry point symbol
    	XTY_IMP = 0x40 // Imported symbol
    )
    
    // Storage-mapping class.
    const (
    	XMC_PR     = 0  // Program code
    	XMC_RO     = 1  // Read-only constant
    	XMC_DB     = 2  // Debug dictionary table
    	XMC_TC     = 3  // TOC entry
    	XMC_UA     = 4  // Unclassified
    	XMC_RW     = 5  // Read/Write data
    	XMC_GL     = 6  // Global linkage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    // This constant mirrors the #define of PX_PROTO_OE in
    // linux/if_pppox.h. We're defining this by hand here instead of
    // autogenerating through mkerrors.sh because including
    // linux/if_pppox.h causes some declaration conflicts with other
    // includes (linux/if_pppox.h includes linux/in.h, which conflicts
    // with netinet/in.h). Given that we only need a single zero constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_s390x.s

    #define x_ptr   R2
    #define y_ptr   R3
    #define CPOOL   R4
    
    // Parameters
    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    // Constants
    #define P0    V30
    #define P1    V31
    TEXT ·p256Mul(SB), NOSPLIT, $0
    	MOVD res+0(FP), res_ptr
    	MOVD in1+8(FP), x_ptr
    	MOVD in2+16(FP), y_ptr
    
    	VL   (0*16)(x_ptr), X0
    	VPDI $0x4, X0, X0, X0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	case ecdh.P521():
    		return oidNamedCurveP521, true
    	}
    
    	return nil, false
    }
    
    // KeyUsage represents the set of actions that are valid for a given key. It's
    // a bitmap of the KeyUsage* constants.
    type KeyUsage int
    
    const (
    	KeyUsageDigitalSignature KeyUsage = 1 << iota
    	KeyUsageContentCommitment
    	KeyUsageKeyEncipherment
    	KeyUsageDataEncipherment
    	KeyUsageKeyAgreement
    	KeyUsageCertSign
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	errNonCanonicalName   = errors.New("name is not in canonical format (it must end with a .)")
    	errStringTooLong      = errors.New("character string exceeds maximum length (255)")
    )
    
    // Internal constants.
    const (
    	// packStartingCap is the default initial buffer size allocated during
    	// packing.
    	//
    	// The starting capacity doesn't matter too much, but most DNS responses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top