Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,363 for Off (0.02 sec)

  1. src/internal/zstd/zstd.go

    	return ze.err
    }
    
    func (r *Reader) makeEOFError(off int) error {
    	return r.wrapError(off, io.ErrUnexpectedEOF)
    }
    
    func (r *Reader) wrapNonEOFError(off int, err error) error {
    	if err == io.EOF {
    		err = io.ErrUnexpectedEOF
    	}
    	return r.wrapError(off, err)
    }
    
    func (r *Reader) makeError(off int, msg string) error {
    	return r.wrapError(off, errors.New(msg))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/internal/coverage/encodemeta/encodefile.go

    	off := preambleLength
    	off2 := mhsz
    	buf := make([]byte, 8)
    	for _, blob := range blobs {
    		binary.LittleEndian.PutUint64(buf, off)
    		if _, err = m.w.Write(buf); err != nil {
    			return fmt.Errorf("error writing %s: %v", m.mfname, err)
    		}
    		if m.debug {
    			fmt.Fprintf(os.Stderr, "=+= pkg offset %d 0x%x\n", off, off)
    		}
    		off += uint64(len(blob))
    		off2 += 8
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/ObjectInputStreamAdapter.kt

        override fun read(buf: ByteArray, off: Int, len: Int): Int = inputStream.read(buf, off, len)
    
        override fun readLine(): String = unsupported("ObjectInputStream.readLine")
    
        override fun readFully(buf: ByteArray) = unsupported("ObjectInputStream.readFully")
    
        override fun readFully(buf: ByteArray, off: Int, len: Int) = unsupported("ObjectInputStream.readFully")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/AppendableWriter.java

        checkNotNull(str);
        checkNotClosed();
        target.append(str);
      }
    
      @Override
      public void write(String str, int off, int len) throws IOException {
        checkNotNull(str);
        checkNotClosed();
        // tricky: append takes start, end pair...
        target.append(str, off, off + len);
      }
    
      @Override
      public void flush() throws IOException {
        checkNotClosed();
        if (target instanceof Flushable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    		off += 3 * arch.PtrSize
    	case abi.Chan: // reflect.chanType
    		off += 2 * arch.PtrSize
    	case abi.Map: // reflect.mapType
    		off += 4*arch.PtrSize + 8
    	case abi.Interface: // reflect.interfaceType
    		off += 3 * arch.PtrSize
    	default:
    		// just Sizeof(rtype)
    	}
    
    	mcount := int(decodeInuxi(arch, p[off+4:], 2))
    	moff := int(decodeInuxi(arch, p[off+4+2+2:], 4))
    	off += moff                // offset to array of reflect.method values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu_x86_test.go

    		t.Skip("skipping test: can't run on GOAMD64>v1 machines")
    	}
    	runDebugOptionsTest(t, "TestSSE3DebugOption", "cpu.sse3=off")
    }
    
    func TestSSE3DebugOption(t *testing.T) {
    	MustHaveDebugOptionsSupport(t)
    
    	if godebug.New("#cpu.sse3").Value() != "off" {
    		t.Skipf("skipping test: GODEBUG=cpu.sse3=off not set")
    	}
    
    	want := false
    	if got := X86.HasSSE3; got != want {
    		t.Errorf("X86.HasSSE3 expected %v, got %v", want, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 18:30:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_test.go

    	MustSupportFeatureDetection(t)
    	runDebugOptionsTest(t, "TestAllCapabilitiesDisabled", "cpu.all=off")
    }
    
    func TestAllCapabilitiesDisabled(t *testing.T) {
    	MustHaveDebugOptionsSupport(t)
    
    	if godebug.New("#cpu.all").Value() != "off" {
    		t.Skipf("skipping test: GODEBUG=cpu.all=off not set")
    	}
    
    	for _, o := range Options {
    		want := false
    		if got := *o.Feature; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters_test.go

    				},
    			},
    			IsMtlsDisabled: false,
    		},
    		"mtls-off-global": {
    			Config: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.PeerAuthentication,
    					Name:             "mtls-off",
    					Namespace:        "istio-system",
    				},
    				Spec: &security.PeerAuthentication{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/syscall/route_freebsd_32bit.go

    func (any *anyMessage) parseRouteMessage(b []byte) *RouteMessage {
    	p := (*RouteMessage)(unsafe.Pointer(any))
    	off := int(unsafe.Offsetof(p.Header.Rmx)) + SizeofRtMetrics
    	if freebsdConfArch == "amd64" {
    		off += SizeofRtMetrics // rt_metrics on amd64 is simply doubled
    	}
    	return &RouteMessage{Header: p.Header, Data: b[rsaAlignOf(off):any.Msglen]}
    }
    
    func (any *anyMessage) parseInterfaceMessage(b []byte) *InterfaceMessage {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 15:46:41 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. src/time/zoneinfo_test.go

    	} {
    		name, off, start, end, isDST, ok := time.Tzset(test.inStr, test.inEnd, test.inSec)
    		if name != test.name || off != test.off || start != test.start || end != test.end || isDST != test.isDST || ok != test.ok {
    			t.Errorf("tzset(%q, %d, %d) = %q, %d, %d, %d, %t, %t, want %q, %d, %d, %d, %t, %t", test.inStr, test.inEnd, test.inSec, name, off, start, end, isDST, ok, test.name, test.off, test.start, test.end, test.isDST, test.ok)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top