Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for gots (0.13 sec)

  1. 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)
  2. 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)
  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. pkg/kubelet/kubelet_test.go

    					if !ok {
    						t.Logf("expected kubernetes.io/os label to be present")
    						return false, nil
    					}
    					if val != goruntime.GOOS {
    						t.Logf("expected kubernetes.io/os to match runtime.GOOS but got %v", val)
    						return false, nil
    					}
    					val, ok = savedNode.Labels[v1.LabelArchStable]
    					if !ok {
    						t.Logf("expected kubernetes.io/arch label to be present")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    		{host: "project-dev:us-central1:main"},
    	}
    	for _, tt := range tests {
    		if got := validHostnamePattern(tt.host); got != tt.validPattern {
    			t.Errorf("validHostnamePattern(%q) = %v, want %v", tt.host, got, tt.validPattern)
    		}
    		if got := validHostnameInput(tt.host); got != tt.validInput {
    			t.Errorf("validHostnameInput(%q) = %v, want %v", tt.host, got, tt.validInput)
    		}
    	}
    }
    
    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. 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)
  7. cmd/object-handlers_test.go

    			wantErr := testCase.wantAPICode
    			if gotErr != wantErr {
    				t.Errorf("test %d: want api error %q, got %q", i, wantErr, gotErr)
    			}
    			if testCase.wantHeaders != nil {
    				for k, v := range testCase.wantHeaders {
    					got := rec.Header().Get(k)
    					if got != v {
    						t.Errorf("Want header %s = %s, got %#v", k, v, rec.Header())
    					}
    				}
    			}
    
    		}
    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. 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)
  9. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -I PREROUTING -p tcp ! -i eth0 -d "${METADATA_SERVER_IP}" --dport 8080 -m comment --comment "metadata-concealment: bridge traffic to metadata server goes to metadata proxy" -j DNAT --to-destination 169.254.169.252:987
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		t.Fatal(err)
    	}
    	tx.Commit()
    	if got := len(db.freeConn); got != 1 {
    		t.Errorf("freeConns = %d; want 1", got)
    	}
    
    	db.SetMaxIdleConns(0)
    
    	if got := len(db.freeConn); got != 0 {
    		t.Errorf("freeConns after set to zero = %d; want 0", got)
    	}
    
    	tx, err = db.Begin()
    	if err != nil {
    		t.Fatal(err)
    	}
    	tx.Commit()
    	if got := len(db.freeConn); got != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top