Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 453 for addr1 (0.25 sec)

  1. cmd/common-main.go

    			if net.ParseIP(endpoint) == nil {
    				// Checking if the IP is a DNS entry.
    				addrs, err := globalDNSCache.LookupHost(GlobalContext, endpoint)
    				if err != nil {
    					logger.FatalIf(err, "Unable to initialize MinIO server with [%s] invalid entry found in MINIO_PUBLIC_IPS", endpoint)
    				}
    				for _, addr := range addrs {
    					domainIPs.Add(addr)
    				}
    			}
    			domainIPs.Add(endpoint)
    		}
    		updateDomainIPs(domainIPs)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

          (StableHLO_DynamicBroadcastInDimOp
            $bias,
            (Shape_ShapeOfOp $conv_1), $_, $_, $_)),
        (StableHLO_DynamicBroadcastInDimOp
          (StableHLO_ConstantOp $cst),
          (Shape_ShapeOfOp $add_1), $_, $_, $_)),
      (LiftAsTFXlaCallModule<"composite_conv_with_bias_and_relu_dynamic_fn">
        (ArgumentList $lhs, $rhs, $bias),
        (ResultList $res),
        (NamedAttributeList
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. cmd/server-main.go

    		haddrs, err := globalDNSCache.LookupHost(ctx, host)
    		if err == nil {
    			for _, addr := range haddrs {
    				addrs.Add(net.JoinHostPort(addr, globalMinioPort))
    			}
    		} else {
    			// Unable to lookup host in 2-secs, let it fail later anyways.
    			addrs.Add(globalMinioAddr)
    		}
    	} else {
    		addrs.Add(globalMinioAddr)
    	}
    	return addrs.ToSlice()
    }
    
    var globalLoggerOutput io.WriteCloser
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    func IPv4Unspecified() Addr { return AddrFrom4([4]byte{}) }
    
    // AddrFrom4 returns the address of the IPv4 address given by the bytes in addr.
    func AddrFrom4(addr [4]byte) Addr {
    	return Addr{
    		addr: uint128{0, 0xffff00000000 | uint64(addr[0])<<24 | uint64(addr[1])<<16 | uint64(addr[2])<<8 | uint64(addr[3])},
    		z:    z4,
    	}
    }
    
    // AddrFrom16 returns the IPv6 address given by the bytes in addr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_arm.go

    	}
    	_ = *addr // if nil, fault before taking the lock
    	var r uint64
    	addrLock(addr).lock()
    	r = *addr
    	addrLock(addr).unlock()
    	return r
    }
    
    //go:nosplit
    func goStore64(addr *uint64, v uint64) {
    	if uintptr(unsafe.Pointer(addr))&7 != 0 {
    		*(*int)(nil) = 0 // crash on unaligned uint64
    	}
    	_ = *addr // if nil, fault before taking the lock
    	addrLock(addr).lock()
    	*addr = v
    	addrLock(addr).unlock()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func FlushFileBuffers(handle Handle) (err error) {
    	r1, _, e1 := syscall.Syscall(procFlushFileBuffers.Addr(), 1, uintptr(handle), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func FlushViewOfFile(addr uintptr, length uintptr) (err error) {
    	r1, _, e1 := syscall.Syscall(procFlushViewOfFile.Addr(), 2, uintptr(addr), uintptr(length), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. src/runtime/msan_loong64.s

    	MOVV	addr+0(FP), RARG0
    	MOVV	sz+8(FP), RARG1
    	// void __msan_write_go(void *addr, uintptr_t sz);
    	MOVV	$__msan_write_go(SB), FARG
    	JMP	msancall<>(SB)
    
    // func runtime·msanmalloc(addr unsafe.Pointer, sz uintptr)
    TEXT	runtime·msanmalloc(SB), NOSPLIT, $0-16
    	MOVV	addr+0(FP), RARG0
    	MOVV	sz+8(FP), RARG1
    	// void __msan_malloc_go(void *addr, uintptr_t sz);
    	MOVV	$__msan_malloc_go(SB), FARG
    	JMP	msancall<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    func unpackOps4(p *obj.Prog) (arg0, arg1, arg2, dst *obj.Addr) {
    	return &p.From, &p.RestArgs[0].Addr, &p.RestArgs[1].Addr, &p.To
    }
    
    // unpackOps5 extracts 5 operands from p.
    func unpackOps5(p *obj.Prog) (arg0, arg1, arg2, arg3, dst *obj.Addr) {
    	return &p.From, &p.RestArgs[0].Addr, &p.RestArgs[1].Addr, &p.RestArgs[2].Addr, &p.To
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/debug/buildinfo/buildinfo.go

    type machoExe struct {
    	f *macho.File
    }
    
    func (x *machoExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, load := range x.f.Loads {
    		seg, ok := load.(*macho.Segment)
    		if !ok {
    			continue
    		}
    		if seg.Addr <= addr && addr <= seg.Addr+seg.Filesz-1 {
    			if seg.Name == "__PAGEZERO" {
    				continue
    			}
    			n := seg.Addr + seg.Filesz - addr
    			if n > size {
    				n = size
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/sync/atomic/doc.go

    func SwapInt64(addr *int64, new int64) (old int64)
    
    // SwapUint32 atomically stores new into *addr and returns the previous *addr value.
    // Consider using the more ergonomic and less error-prone [Uint32.Swap] instead.
    func SwapUint32(addr *uint32, new uint32) (old uint32)
    
    // SwapUint64 atomically stores new into *addr and returns the previous *addr value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top