Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 6,541 for RUNTIME (0.15 sec)

  1. src/runtime/crash_unix_test.go

    		// This may be ncpu < 2 related...
    		t.Skipf("skipping; test fails on %s/%s - see issue #42464", runtime.GOOS, runtime.GOARCH)
    	}
    
    	if runtime.Sigisblocked(int(syscall.SIGQUIT)) {
    		t.Skip("skipping; SIGQUIT is blocked, see golang.org/issue/19196")
    	}
    
    	testenv.MustHaveGoBuild(t)
    
    	if strings.Contains(os.Getenv("GOFLAGS"), "mayMoreStackPreempt") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/util.go

    package admission
    
    import "k8s.io/apimachinery/pkg/runtime"
    
    type RuntimeObjectInterfaces struct {
    	runtime.ObjectCreater
    	runtime.ObjectTyper
    	runtime.ObjectDefaulter
    	runtime.ObjectConvertor
    	runtime.EquivalentResourceMapper
    }
    
    func NewObjectInterfacesFromScheme(scheme *runtime.Scheme) ObjectInterfaces {
    	return &RuntimeObjectInterfaces{scheme, scheme, scheme, scheme, runtime.NewEquivalentResourceRegistry()}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 18:26:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. src/internal/fuzz/trace.go

    import _ "unsafe" // for go:linkname
    
    //go:linkname libfuzzerTraceCmp1 runtime.libfuzzerTraceCmp1
    //go:linkname libfuzzerTraceCmp2 runtime.libfuzzerTraceCmp2
    //go:linkname libfuzzerTraceCmp4 runtime.libfuzzerTraceCmp4
    //go:linkname libfuzzerTraceCmp8 runtime.libfuzzerTraceCmp8
    
    //go:linkname libfuzzerTraceConstCmp1 runtime.libfuzzerTraceConstCmp1
    //go:linkname libfuzzerTraceConstCmp2 runtime.libfuzzerTraceConstCmp2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromGroovyString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromStringArray(), "Runtime.getRuntime().exec(command)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command])", "", ""],
                // type-wrapped arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/nbpipe_pipe_test.go

    //go:build aix || darwin
    
    package runtime_test
    
    import (
    	"runtime"
    	"syscall"
    	"testing"
    )
    
    func TestSetNonblock(t *testing.T) {
    	t.Parallel()
    
    	r, w, errno := runtime.Pipe()
    	if errno != 0 {
    		t.Fatal(syscall.Errno(errno))
    	}
    	defer func() {
    		runtime.Close(r)
    		runtime.Close(w)
    	}()
    
    	checkIsPipe(t, r, w)
    
    	runtime.SetNonblock(r)
    	runtime.SetNonblock(w)
    	checkNonblocking(t, r, "reader")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 20:47:17 UTC 2022
    - 706 bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    			f:    blockChanRecv,
    			stk: []string{
    				"runtime.chanrecv1",
    				"runtime/pprof.blockChanRecv",
    				"runtime/pprof.TestBlockProfile",
    			},
    			re: `
    [0-9]+ [0-9]+ @( 0x[[:xdigit:]]+)+
    #	0x[0-9a-f]+	runtime\.chanrecv1\+0x[0-9a-f]+	.*runtime/chan.go:[0-9]+
    #	0x[0-9a-f]+	runtime/pprof\.blockChanRecv\+0x[0-9a-f]+	.*runtime/pprof/pprof_test.go:[0-9]+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/apitesting/codec.go

    limitations under the License.
    */
    
    package apitesting
    
    import (
    	"fmt"
    	"mime"
    	"os"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/runtime/serializer/recognizer"
    )
    
    var (
    	testCodecMediaType        string
    	testStorageCodecMediaType string
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/storage/storage_codec.go

    	Config            storagebackend.Config
    
    	EncoderDecoratorFn func(runtime.Encoder) runtime.Encoder
    	DecoderDecoratorFn func([]runtime.Decoder) []runtime.Decoder
    }
    
    // NewStorageCodec assembles a storage codec for the provided storage media type, the provided serializer, and the requested
    // storage and memory versions.
    func NewStorageCodec(opts StorageCodecConfig) (runtime.Codec, runtime.GroupVersioner, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 15:03:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/embedded_test.go

    	"reflect"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	runtimetesting "k8s.io/apimachinery/pkg/runtime/testing"
    	"k8s.io/apimachinery/pkg/util/diff"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    func TestDecodeEmptyRawExtensionAsObject(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 06 16:07:10 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	runtimetesting "k8s.io/apimachinery/pkg/runtime/testing"
    	"k8s.io/apimachinery/pkg/util/diff"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	flag "github.com/spf13/pflag"
    	"sigs.k8s.io/yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top