Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 237 for RUNTIME (0.17 sec)

  1. src/cmd/link/internal/ld/lib.go

    var internalpkg = []string{
    	"crypto/internal/boring",
    	"crypto/internal/boring/syso",
    	"crypto/x509",
    	"net",
    	"os/user",
    	"runtime/cgo",
    	"runtime/race",
    	"runtime/race/internal/amd64v1",
    	"runtime/race/internal/amd64v3",
    	"runtime/msan",
    	"runtime/asan",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    func (d *dummyStorage) Versioner() storage.Versioner { return nil }
    func (d *dummyStorage) Create(_ context.Context, _ string, _, _ runtime.Object, _ uint64) error {
    	return fmt.Errorf("unimplemented")
    }
    func (d *dummyStorage) Delete(_ context.Context, _ string, _ runtime.Object, _ *storage.Preconditions, _ storage.ValidateObjectFunc, _ runtime.Object) error {
    	return fmt.Errorf("unimplemented")
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    			}()
    		}
    		for p := 0; p < procs; p++ {
    			<-c
    		}
    	}
    }
    
    func TestStoreLoadSeqCst32(t *testing.T) {
    	if runtime.NumCPU() == 1 {
    		t.Skipf("Skipping test on %v processor machine", runtime.NumCPU())
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(4))
    	N := int32(1e3)
    	if testing.Short() {
    		N = int32(1e2)
    	}
    	c := make(chan bool, 2)
    	X := [2]int32{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    		return
    
    	case TextSym:
    		if ldr.SymPkg(x) != "" || strings.Contains(name, "-tramp") || strings.HasPrefix(name, "runtime.text.") {
    			// Function within a file
    			syms = xfile.writeSymbolFunc(ctxt, x)
    		} else {
    			// Only runtime.text and runtime.etext come through this way
    			if name != "runtime.text" && name != "runtime.etext" && name != "go:buildid" {
    				Exitf("putaixsym: unknown text symbol %s", name)
    			}
    			s := &XcoffSymEnt64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    		}(w)
    	}
    
    	maxbg := maxbg
    	// for runtime.NumCPU() < 4 ||  runtime.GOMAXPROCS(0) == 1, do not change maxbg.
    	// Because there is not enough CPU to parallel the testing of multiple packages.
    	if runtime.NumCPU() > 4 && runtime.GOMAXPROCS(0) != 1 {
    		for _, w := range worklist {
    			// See go.dev/issue/65164
    			// because GOMAXPROCS=2 runtime CPU usage is low,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	remote "k8s.io/cri-client/pkg"
    	kubelettypes "k8s.io/kubelet/pkg/types"
    	"k8s.io/kubernetes/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. staging/publishing/rules.yaml

      library: true
    - destination: cli-runtime
      branches:
      - name: master
        dependencies:
        - repository: api
          branch: master
        - repository: apimachinery
          branch: master
        - repository: client-go
          branch: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/cli-runtime
      - name: release-1.27
        go: 1.21.11
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    	if !*gccgo {
    		fmt.Fprintf(fgo2, "//go:linkname _Cgo_always_false runtime.cgoAlwaysFalse\n")
    		fmt.Fprintf(fgo2, "var _Cgo_always_false bool\n")
    		fmt.Fprintf(fgo2, "//go:linkname _Cgo_use runtime.cgoUse\n")
    		fmt.Fprintf(fgo2, "func _Cgo_use(interface{})\n")
    	}
    	fmt.Fprintf(fgo2, "//go:linkname _Cgo_no_callback runtime.cgoNoCallback\n")
    	fmt.Fprintf(fgo2, "func _Cgo_no_callback(bool)\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller_test.go

    	"reflect"
    	"strconv"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/informers"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    limitations under the License.
    */
    
    package v1beta2
    
    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    const (
    	ControllerRevisionHashLabelKey = "controller-revision-hash"
    	StatefulSetRevisionLabel       = ControllerRevisionHashLabelKey
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top