Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for gots (0.1 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            then:
            output.count("Creating Transform") == 0
            output.count("Transforming") == 0
            outputContains("files: [jar1.jar.txt, jar2.jar.txt]")
        }
    
        def "user gets a reasonable error message when a transform throws exception and continues with other inputs"() {
            given:
            buildFile << """
                def a = file('a.jar')
                a << '1234'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>4.0.0/4.0.99</version>
              <code>
                <![CDATA[
        /**
         * Gets the POM file for the corresponding project (if any).
         *
         * @return The POM file from which this model originated or {@code null} if this model does not belong to a local
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. 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)
  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