Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 188 for const2 (0.1 sec)

  1. src/cmd/link/internal/ld/elf.go

     * May waste some.
     * On FreeBSD, cannot be larger than a page.
     */
    const (
    	ELFRESERVE = 4096
    )
    
    /*
     * We use the 64-bit data structures on both 32- and 64-bit machines
     * in order to write the code just once.  The 64-bit data structure is
     * written in the 32-bit format on the 32-bit machines.
     */
    const (
    	NSECT = 400
    )
    
    var (
    	Nelfsym = 1
    
    	elf64 bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types.go

    */
    
    package v1beta2
    
    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    const (
    	ControllerRevisionHashLabelKey = "controller-revision-hash"
    	StatefulSetRevisionLabel       = ControllerRevisionHashLabelKey
    	DeprecatedRollbackTo           = "deprecated.deployment.rollback.to"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    // fills the buffer before switching over to ReadFrom.
    func TestWriterReadFromWithBufferedData(t *testing.T) {
    	const bufsize = 16
    
    	input := createTestInput(64)
    	rfw := &readFromWriter{}
    	w := NewWriterSize(rfw, bufsize)
    
    	const writeSize = 8
    	if n, err := w.Write(input[:writeSize]); n != writeSize || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

        -> (tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>) {
      // CHECK-NEXT: %[[CONST:.*]] = "tf.Const"()
      %constant = "tf.Const"() {value = dense<0.0> : tensor<4xf32>} : () -> tensor<4xf32>
      "tf.AssignVariableOp"(%arg0, %constant) : (tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>) -> ()
      // CHECK-NEXT: return %[[CONST]], %[[CONST]]
      func.return %arg0, %constant : tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    // (can be junk).
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	// A malloc header is functionally a single type pointer, but
    	// we need to use 8 here to ensure 8-byte alignment of allocations
    	// on 32-bit platforms. It's wasteful, but a lot of code relies on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && solaris
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m64 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_802                        = 0x12
    	AF_APPLETALK                  = 0x10
    	AF_CCITT                      = 0xa
    	AF_CHAOS                      = 0x5
    	AF_DATAKIT                    = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    {
    	regdisc_t	disc;
    	int		ordinal;
    	Sfio_t*		sp;
    } Disc_t;
    
    static void*
    compf(const regex_t* re, const char* xstr, size_t xlen, regdisc_t* disc)
    {
    	Disc_t*		dp = (Disc_t*)disc;
    
    	return (void*)((char*)0 + ++dp->ordinal);
    }
    
    static int
    execf(const regex_t* re, void* data, const char* xstr, size_t xlen, const char* sstr, size_t slen, char** snxt, regdisc_t* disc)
    {
    	Disc_t*		dp = (Disc_t*)disc;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    }
    
    var delimPairs = []string{
    	"", "", // default
    	"{{", "}}", // same as default
    	"<<", ">>", // distinct
    	"|", "|", // same
    	"(日)", "(本)", // peculiar
    }
    
    func TestDelims(t *testing.T) {
    	const hello = "Hello, world"
    	var value = struct{ Str string }{hello}
    	for i := 0; i < len(delimPairs); i += 2 {
    		text := ".Str"
    		left := delimPairs[i+0]
    		trueLeft := left
    		right := delimPairs[i+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && dragonfly
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m64 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ATM                            = 0x1e
    	AF_BLUETOOTH                      = 0x21
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_riscv64.go

    // mkerrors.sh
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- _const.go
    
    package syscall
    
    const (
    	AF_ALG                           = 0x26
    	AF_APPLETALK                     = 0x5
    	AF_ASH                           = 0x12
    	AF_ATMPVC                        = 0x8
    	AF_ATMSVC                        = 0x14
    	AF_AX25                          = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
Back to top