Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for gojs (0.06 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    		},
    		{
    			desc:            "volumes inuse on node and volumeManager",
    			existingVolumes: []v1.UniqueVolumeName{"vol1"},
    			existingNode: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: testKubeletHostname, Labels: map[string]string{v1.LabelOSStable: goruntime.GOOS, v1.LabelArchStable: goruntime.GOARCH}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		return err
    	}
    	if ofile != objpkg {
    		objects = append(objects, ofile)
    	}
    
    	// Copy .h files named for goos or goarch or goos_goarch
    	// to names using GOOS and GOARCH.
    	// For example, defs_linux_amd64.h becomes defs_GOOS_GOARCH.h.
    	_goos_goarch := "_" + cfg.Goos + "_" + cfg.Goarch
    	_goos := "_" + cfg.Goos
    	_goarch := "_" + cfg.Goarch
    	for _, file := range p.HFiles {
    		name, ext := fileExtSplit(file)
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //   - the target operating system, as spelled by runtime.GOOS, set with the
    //     GOOS environment variable.
    //   - the target architecture, as spelled by runtime.GOARCH, set with the
    //     GOARCH environment variable.
    //   - any architecture features, in the form GOARCH.feature
    //     (for example, "amd64.v2"), as detailed below.
    //   - "unix", if GOOS is a Unix or Unix-like system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// typically on the order of 1 ms or more.
    	osHasLowResTimer = GOOS == "windows" || GOOS == "openbsd" || GOOS == "netbsd"
    
    	// osHasLowResClockInt is osHasLowResClock but in integer form, so it can be used to create
    	// constants conditionally.
    	osHasLowResClockInt = goos.IsWindows
    
    	// osHasLowResClock indicates that timestamps produced by nanotime on the platform have a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    	}); err != nil {
    		t.Error(err)
    	}
    	t.Logf("verification took %v", time.Since(start))
    }
    
    func TestSystemRootsError(t *testing.T) {
    	if runtime.GOOS == "windows" || runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		t.Skip("Windows and darwin do not use (or support) systemRoots")
    	}
    
    	defer func(oldSystemRoots *CertPool) { systemRoots = oldSystemRoots }(systemRootsPool())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    			nodeLabels:  map[string]string{v1.LabelOSStable: goruntime.GOOS, v1.LabelArchStable: goruntime.GOARCH},
    			podSelector: map[string]string{v1.LabelOSStable: "dummyOS"},
    			podStatus:   v1.PodFailed,
    		},
    		{
    			name:        "correct OS label, correct pod selector, admission denied",
    			nodeLabels:  map[string]string{v1.LabelOSStable: goruntime.GOOS, v1.LabelArchStable: goruntime.GOARCH},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    	// sets the bucket policy using the policy statement generated from `getWriteOnlyObjectStatement` so that the
    	// unsigned request goes through and its validated again.
    	ExecObjectLayerAPIAnonTest(t, obj, "TestAPIHeadObjectHandler", bucketName, objectName, instanceType, apiRouter, anonReq, getAnonReadOnlyObjectPolicy(bucketName, objectName))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    		if volumeutil.IsWindowsLocalPath(runtime.GOOS, hostPath) {
    			hostPath = volumeutil.MakeAbsolutePath(runtime.GOOS, hostPath)
    		}
    
    		containerPath := mount.MountPath
    		// IsAbs returns false for UNC path/SMB shares/named pipes in Windows. So check for those specifically and skip MakeAbsolutePath
    		if !volumeutil.IsWindowsUNCPath(runtime.GOOS, containerPath) && !utilfs.IsAbs(containerPath) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    			setError(e)
    			return
    		}
    		elem := p.DefaultExecName() + cfg.ExeSuffix
    		full := filepath.Join(cfg.BuildContext.GOOS+"_"+cfg.BuildContext.GOARCH, elem)
    		if cfg.BuildContext.GOOS != runtime.GOOS || cfg.BuildContext.GOARCH != runtime.GOARCH {
    			// Install cross-compiled binaries to subdirectories of bin.
    			elem = full
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	}
    
    	vars := mux.Vars(r)
    	updateURL := vars["updateURL"]
    	dryRun := r.Form.Get("dry-run") == "true"
    
    	mode := getMinioMode()
    	if updateURL == "" {
    		updateURL = minioReleaseInfoURL
    		if runtime.GOOS == globalWindowsOSName {
    			updateURL = minioReleaseWindowsInfoURL
    		}
    	}
    
    	u, err := url.Parse(updateURL)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top