Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,552 for Off (0.02 sec)

  1. src/cmd/compile/internal/ssa/_gen/386splitload.rules

    (CMP(L|W|B)load {sym} [off] ptr x mem) => (CMP(L|W|B) (MOV(L|W|B)load {sym} [off] ptr mem) x)
    
    (CMPLconstload {sym} [vo] ptr mem) => (CMPLconst (MOVLload {sym} [vo.Off()] ptr mem) [vo.Val()])
    (CMPWconstload {sym} [vo] ptr mem) => (CMPWconst (MOVWload {sym} [vo.Off()] ptr mem) [vo.Val16()])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 620 bytes
    - Viewed (0)
  2. .github/workflows/mint/nginx-8-node.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. docs/orchestration/docker-compose/nginx.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 05 06:32:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_nocache.txt

    env GOCACHE=test
    ! go build -o triv triv.go
    stderr 'build cache is required, but could not be located: GOCACHE is not an absolute path'
    
    # An explicit GOCACHE=off also disables builds.
    env GOCACHE=off
    ! go build -o triv triv.go
    stderr 'build cache is disabled by GOCACHE=off'
    
    # If GOCACHE is set to an unwritable directory, we should diagnose it as such.
    [GOOS:windows] stop # Does not support unwritable directories.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

            public int read(byte[] b, int off, int len) throws IOException {
                return readImpl(b, off, len);
            }
    
            int readImpl(byte[] b, int off, int len) {
                if (b == null) {
                    throw new NullPointerException();
                }
    
                if ((off < 0) || (off > b.length) || (len < 0)
                        || ((off + len) > b.length) || ((off + len) < 0)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_pseudo_cache.txt

    # If GOPROXY is 'off', lookups should use whatever pseudo-version is available.
    env GOPROXY=off
    go mod download -json golang.org/x/text@a1b916ed6726
    stdout '"Version": "v0.0.0-20171215141712-a1b916ed6726",'
    
    # If we can re-resolve the commit to a pseudo-version, fetching the commit by
    # hash should use the highest such pseudo-version appropriate to the commit.
    env GOPROXY=direct
    go mod download -json golang.org/x/text@a1b916ed6726
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/decodesym.go

    	for j := 0; j < relocs.Count(); j++ {
    		rel := relocs.At(j)
    		if rel.Off() == off {
    			return rel
    		}
    	}
    	return loader.Reloc{}
    }
    
    func decodeRelocSym(ldr *loader.Loader, symIdx loader.Sym, relocs *loader.Relocs, off int32) loader.Sym {
    	return decodeReloc(ldr, symIdx, relocs, off).Sym()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/symbolbuilder.go

    		sb.kind = sym.SDATA
    	}
    	if sb.size < off+wid {
    		sb.size = off + wid
    		sb.Grow(sb.size)
    	}
    
    	switch wid {
    	case 1:
    		sb.data[off] = uint8(v)
    	case 2:
    		arch.ByteOrder.PutUint16(sb.data[off:], uint16(v))
    	case 4:
    		arch.ByteOrder.PutUint32(sb.data[off:], uint32(v))
    	case 8:
    		arch.ByteOrder.PutUint64(sb.data[off:], v)
    	}
    
    	return off + wid
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    					continue
    				}
    				off := 0
    				if m[1] != "" {
    					off, _ = strconv.Atoi(m[2])
    				}
    				if off >= localSize {
    					if fn != nil {
    						v := fn.varByOffset[off-localSize]
    						if v != nil {
    							badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
    							continue
    						}
    					}
    					if off >= localSize+argSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/runtime/type.go

    	}
    	if t := md.typemap[off]; t != nil {
    		return t
    	}
    	res := md.types + uintptr(off)
    	if res > md.etypes {
    		println("runtime: typeOff", hex(off), "out of range", hex(md.types), "-", hex(md.etypes))
    		throw("runtime: type offset out of range")
    	}
    	return (*_type)(unsafe.Pointer(res))
    }
    
    func (t rtype) typeOff(off typeOff) *_type {
    	return resolveTypeOff(unsafe.Pointer(t.Type), off)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top