Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 105 for heal (0.32 sec)

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

    		// There are no relocations against these dies, and their names
    		// are not unique, so don't create a symbol.
    		return die
    	case dwarf.DW_ABRV_COMPUNIT, dwarf.DW_ABRV_COMPUNIT_TEXTLESS:
    		// Avoid collisions with "real" symbol names.
    		name = fmt.Sprintf(".pkg.%s.%d", name, len(d.linkctxt.compUnits))
    		st = sym.SDWARFCUINFO
    	case dwarf.DW_ABRV_VARIABLE:
    		st = sym.SDWARFVAR
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    TEXT ·sigpanic0(SB),NOSPLIT,$0-0
    	get_tls(R14)
    	MOVQ	g(R14), R14
    #ifndef GOOS_plan9
    	XORPS	X15, X15
    #endif
    	JMP	·sigpanic<ABIInternal>(SB)
    
    // gcWriteBarrier informs the GC about heap pointer writes.
    //
    // gcWriteBarrier returns space in a write barrier buffer which
    // should be filled in by the caller.
    // gcWriteBarrier does NOT follow the Go ABI. It accepts the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func SetsockoptTimeval(fd Handle, level, opt int, tv *Timeval) (err error) { return syscall.EWINDOWS }
    
    // The Linger struct is wrong but we only noticed after Go 1.
    // sysLinger is the real system call structure.
    
    // BUG(brainman): The definition of Linger is not appropriate for direct use
    // with Setsockopt and Getsockopt.
    // Use SetsockoptLinger instead.
    
    type Linger struct {
    	Onoff  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// the pod could reserve the claim. Instead of reserving here by
    			// updating the ResourceClaim status, we assume that reserving
    			// will work and only do it for real during binding. If it fails at
    			// that time, some other pod was faster and we have to try again.
    			continue
    		}
    
    		// Do we have the builtin controller?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

    }
    
    TEST_F(CApiAttributesTest, StringTensor) {
      // Create the string-Tensor "attribute" value.
      const char test_string[] =
          "borkborkborkborkborkborkborkbork";  // >24bytes to force heap alloc
      TF_TString tstr[1];
      TF_TString_Init(&tstr[0]);
      TF_TString_Copy(&tstr[0], test_string, sizeof(test_string) - 1);
    
      auto deallocator = [](void* data, size_t len, void* arg) {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    func is8BitInt(t *types.Type) bool {
    	return t.Size() == 1 && t.IsInteger()
    }
    
    func isPtr(t *types.Type) bool {
    	return t.IsPtrShaped()
    }
    
    // mergeSym merges two symbolic offsets. There is no real merging of
    // offsets, we just pick the non-nil one.
    func mergeSym(x, y Sym) Sym {
    	if x == nil {
    		return y
    	}
    	if y == nil {
    		return x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

     */
    @media not screen and (min-width: 64rem) {
    	/* Repeat the class twice to prioritize our mobile classes! */
    
    	.content.content {
    		/* Make the height equal to
               the real height of content */
    		overflow: visible;
    	}
    
    	.main-content {
    		/* Main content show first */
    		flex-direction: column-reverse;
    	}
    
    	.docs-navigation.docs-navigation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/sync/atomic/atomic_test.go

    var global [1024]byte
    
    func testPointers() []unsafe.Pointer {
    	var pointers []unsafe.Pointer
    	// globals
    	for i := 0; i < 10; i++ {
    		pointers = append(pointers, unsafe.Pointer(&global[1<<i-1]))
    	}
    	// heap
    	pointers = append(pointers, unsafe.Pointer(new(byte)))
    	// nil
    	pointers = append(pointers, nil)
    	return pointers
    }
    
    func TestSwapPointer(t *testing.T) {
    	var x struct {
    		before uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    			Deps:       []*work.Action{build},
    			Objdir:     b.NewObjdir(),
    			Package:    p,
    			IgnoreFail: true, // run (prepare output) even if build failed
    		}
    		if writeCoverMetaAct != nil {
    			// There is no real "run" for this package (since there
    			// are no tests), but if coverage is turned on, we can
    			// collect coverage data for the code in the package by
    			// asking cmd/cover for a static meta-data file as part of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    // deployment, or to deal with very large number of endpoints for a service. We want
    // to avoid passing around large objects - like full list of endpoints for a registry,
    // or the full list of endpoints for a service across registries, since it limits
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top