Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 192 for nobytes (0.12 sec)

  1. manifests/charts/base/templates/NOTES.txt

    zirain <******@****.***> 1713320861 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 02:27:41 UTC 2024
    - 203 bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/NOTES.txt

    Martin Ostrowski <******@****.***> 1586986146 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    lei-tang <******@****.***> 1715889748 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pkg/test/util/file/file.go

    package file
    
    import (
    	"archive/tar"
    	"bytes"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    
    	"github.com/mitchellh/go-homedir"
    
    	"istio.io/istio/pkg/test"
    )
    
    // AsBytes is a simple wrapper around os.ReadFile provided for completeness.
    func AsBytes(filename string) ([]byte, error) {
    	return os.ReadFile(filename)
    }
    
    // AsBytesOrFail calls AsBytes and fails the test if any errors occurred.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. manifests/charts/gateway/templates/NOTES.txt

    zirain <******@****.***> 1713320861 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 02:27:41 UTC 2024
    - 452 bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/NOTES.txt

    Martin Ostrowski <******@****.***> 1586986146 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/testdata/libfuzzer2.go

    package main
    
    import "C"
    
    import "unsafe"
    
    //export FuzzMe
    func FuzzMe(p unsafe.Pointer, sz C.int) {
    	b := C.GoBytes(p, sz)
    	b = b[3:]
    	if len(b) >= 4 && b[0] == 'f' && b[1] == 'u' && b[2] == 'z' && b[3] == 'z' {
    		panic("found it")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 254 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/libfuzzer1.go

    package main
    
    import "C"
    
    import "unsafe"
    
    //export LLVMFuzzerTestOneInput
    func LLVMFuzzerTestOneInput(p unsafe.Pointer, sz C.int) C.int {
    	b := C.GoBytes(p, sz)
    	if len(b) >= 6 && b[0] == 'F' && b[1] == 'u' && b[2] == 'z' && b[3] == 'z' && b[4] == 'M' && b[5] == 'e' {
    		panic("found it")
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 321 bytes
    - Viewed (0)
  9. src/runtime/linkname.go

    //go:linkname write
    
    // used by cgo
    //go:linkname _cgo_panic_internal
    //go:linkname cgoAlwaysFalse
    //go:linkname cgoUse
    //go:linkname cgoCheckPointer
    //go:linkname cgoCheckResult
    //go:linkname cgoNoCallback
    //go:linkname gobytes
    //go:linkname gostringn
    
    // used in plugin
    //go:linkname doInit
    
    // used in math/bits
    //go:linkname overflowError
    //go:linkname divideError
    
    // used in tests
    //go:linkname extraMInUse
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 778 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/LogSerializerSpec.groovy

            def bytes = toBytes(value, serializer)
            return fromBytes(bytes, serializer)
        }
    
        public <T> T fromBytes(byte[] bytes, Serializer<T> serializer) {
            return serializer.read(new KryoBackedDecoder(new ByteArrayInputStream(bytes)))
        }
    
        public <T> byte[] toBytes(T value, Serializer<T> serializer) {
            def bytes = new ByteArrayOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top