Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 444 for Reserve (0.14 sec)

  1. src/cmd/internal/obj/objfile.go

    	genFuncInfoSyms(ctxt)
    
    	w := writer{
    		Writer:  goobj.NewWriter(b),
    		ctxt:    ctxt,
    		pkgpath: objabi.PathToPrefix(ctxt.Pkgpath),
    	}
    
    	start := b.Offset()
    	w.init()
    
    	// Header
    	// We just reserve the space. We'll fill in the offsets later.
    	flags := uint32(0)
    	if ctxt.Flag_shared {
    		flags |= goobj.ObjFlagShared
    	}
    	if w.pkgpath == UnlinkablePkg {
    		flags |= goobj.ObjFlagUnlinkable
    	}
    	if w.pkgpath == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/encoding/gob/type.go

    	tBytes     = bootstrapType("bytes", (*[]byte)(nil))
    	tString    = bootstrapType("string", (*string)(nil))
    	tComplex   = bootstrapType("complex", (*complex128)(nil))
    	tInterface = bootstrapType("interface", (*any)(nil))
    	// Reserve some Ids for compatible expansion
    	tReserved7 = bootstrapType("_reserved1", (*struct{ r7 int })(nil))
    	tReserved6 = bootstrapType("_reserved1", (*struct{ r6 int })(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        auto permuation_tensor_type =
            RankedTensorType::get({input_rank}, rewriter.getIntegerType(32));
        llvm::SmallVector<Attribute, 4> permute;
        permute.reserve(input_rank);
        // First create an identity permutation tensor.
        for (int i = 0; i < input_rank; i++) {
          permute.push_back(rewriter.getI32IntegerAttr(i));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/types.go

    	// UnschedulablePlugins records the plugin names that the Pod failed with Unschedulable or UnschedulableAndUnresolvable status.
    	// It's registered only when the Pod is rejected in PreFilter, Filter, Reserve, PreBind or Permit (WaitOnPermit).
    	UnschedulablePlugins sets.Set[string]
    	// PendingPlugins records the plugin names that the Pod failed with Pending status.
    	PendingPlugins sets.Set[string]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    				out.Write32(t.off)
    				out.Write32(t.align)
    				out.Write32(t.reloc)
    				out.Write32(t.nreloc)
    				out.Write32(t.flag)
    				out.Write32(t.res1) /* reserved */
    				out.Write32(t.res2) /* reserved */
    				out.Write32(0)      /* reserved */
    			} else {
    				out.WriteStringN(t.name, 16)
    				out.WriteStringN(t.segname, 16)
    				out.Write32(uint32(t.addr))
    				out.Write32(uint32(t.size))
    				out.Write32(t.off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    	suffix    []byte // ring buffer once len(suffix) == N
    	suffixOff int    // offset to write into suffix
    	skipped   int64
    
    	// TODO(bradfitz): we could keep one large []byte and use part of it for
    	// the prefix, reserve space for the '... Omitting N bytes ...' message,
    	// then the ring buffer suffix, and just rearrange the ring buffer
    	// suffix when Bytes() is called, but it doesn't seem worth it for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    	// the function entry map is index 0. Conveniently, layout
    	// already ensured that the entry block is first.
    	if lv.f.Entry != lv.f.Blocks[0] {
    		lv.f.Fatalf("entry block must be first")
    	}
    
    	{
    		// Reserve an entry for function entry.
    		live := bitvec.New(nvars)
    		lv.livevars = append(lv.livevars, live)
    	}
    
    	for _, b := range lv.f.Blocks {
    		be := lv.blockEffects(b)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. src/runtime/asm_ppc64x.s

    	MOVD	g, R3			// arg 0: G
    	// C functions expect 32 (48 for AIX) bytes of space on caller
    	// stack frame and a 16-byte aligned R1
    	MOVD	R1, R14			// save current stack
    	SUB	$cgoCalleeStackSize, R1	// reserve the callee area
    	RLDCR	$0, R1, $~15, R1	// 16-byte align
    	BL	(CTR)			// may clobber R0, R3-R12
    	MOVD	R14, R1			// restore stack
    #ifndef GOOS_aix
    	MOVD	24(R1), R2
    #endif
    	XOR	R0, R0			// fix R0
    
    nocgo:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar.go

    // Copyright (c) 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package edwards25519
    
    import (
    	"errors"
    	"internal/byteorder"
    )
    
    // A Scalar is an integer modulo
    //
    //	l = 2^252 + 27742317777372353535851937790883648493
    //
    // which is the prime order of the edwards25519 group.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

      Locality locality = 24;
    
      // Reservations for deleted fields.
      reserved 15;
    }
    
    message Locality {
      string region = 1;
      string zone = 2;
      string subzone = 3;
    }
    
    enum WorkloadStatus {
      // Workload is healthy and ready to serve traffic.
      HEALTHY = 0;
      // Workload is unhealthy and NOT ready to serve traffic.
      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top