Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,814 for RUNTIME (0.69 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

                .configuration("runtime")
                .configuration("other")
                .configuration("default")
                .dependsOn(m1, conf: "compile->default")
                .dependsOn(m2, conf: "runtime->default")
                .dependsOn(inDefault, conf: "*,!compile,!runtime")
                .artifact(name: "compile", conf: "compile")
                .artifact(name: "runtime", conf: "runtime")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/testx.go

    // This file contains //export directives on Go functions
    // and so it must NOT contain C definitions (only declarations).
    // See test.go for C definitions.
    
    package cgotest
    
    import (
    	"runtime"
    	"runtime/cgo"
    	"runtime/debug"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"unsafe"
    )
    
    /*
    // threads
    extern void doAdd(int, int);
    extern int callGoInCThread(int);
    
    // issue 1328
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    			name: "runtime.GoroutineProfile",
    			fn: func(t *testing.T) {
    				var s [1]runtime.StackRecord
    				runtime.GoroutineProfile(s[:])
    			},
    		},
    		{
    			name: "runtime.ReadMemStats",
    			fn: func(t *testing.T) {
    				var mstats runtime.MemStats
    				runtime.ReadMemStats(&mstats)
    			},
    		},
    		{
    			name: "runtime.Stack",
    			fn: func(t *testing.T) {
    				var b [64]byte
    				runtime.Stack(b[:], true)
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv.go

    	if !platform.BuildModeSupported(runtime.Compiler, buildmode, runtime.GOOS, runtime.GOARCH) {
    		t.Skipf("skipping test: build mode %s on %s/%s is not supported by the %s compiler", buildmode, runtime.GOOS, runtime.GOARCH, runtime.Compiler)
    	}
    }
    
    // HasSymlink reports whether the current system can use os.Symlink.
    func HasSymlink() bool {
    	ok, _ := hasSymlink()
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. pkg/config/schema/kubeclient/resources.gen.go

    package kubeclient
    
    import (
    	"context"
    	"fmt"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/kube/informerfactory"
    	ktypes "istio.io/istio/pkg/kube/kubetypes"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

            if (testVariant == 'runtime' || testVariant == 'default') {
                // the runtime variant is supposed to include everything
                return true
            }
            if (testVariant == 'api' && repoType == 'ivy') {
                // classic ivy metadata interpretation does not honor api/runtime separation
                return true
            }
            return false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    	// the media type this watch is being served with
    	MediaType string
    	// used to frame the watch stream
    	Framer runtime.Framer
    	// used to encode the watch stream event itself
    	Encoder runtime.Encoder
    	// used to encode the nested object in the watch stream
    	EmbeddedEncoder runtime.Encoder
    
    	MemoryAllocator      runtime.MemoryAllocator
    	TimeoutFactory       TimeoutFactory
    	ServerShuttingDownCh <-chan struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    					verb: "get",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    						return true, nil, errors.NewNotFound(action.(fakeclient.GetAction).GetResource().GroupResource(), action.(fakeclient.GetAction).GetName())
    					},
    				},
    				{
    					verb: "create",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5(runtime)]""")
            failure.assertHasCause("""Module 'cglib:cglib' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5(runtime)]""")
        }
    
        def "can detect conflict with capability in different versions and upgrade to latest version (#rule)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. src/internal/trace/trace_test.go

    			}
    		}
    	})
    }
    
    func TestTraceStress(t *testing.T) {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		t.Skip("no os.Pipe on " + runtime.GOOS)
    	}
    	testTraceProg(t, "stress.go", nil)
    }
    
    func TestTraceStressStartStop(t *testing.T) {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		t.Skip("no os.Pipe on " + runtime.GOOS)
    	}
    	testTraceProg(t, "stress-start-stop.go", nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top