Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for gots (0.25 sec)

  1. internal/s3select/select_test.go

    			if err != nil {
    				t.Error(err)
    				return
    			}
    			got, err := io.ReadAll(res)
    			if err != nil {
    				t.Error(err)
    				return
    			}
    			gotS := strings.TrimSpace(string(got))
    			if !reflect.DeepEqual(gotS, testCase.wantResult) {
    				t.Errorf("received response does not match with expected reply. Query: %s\ngot: %s\nwant:%s", testCase.query, gotS, testCase.wantResult)
    			}
    		})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			ilw := &IstioEgressListenerWrapper{}
    			got := ilw.selectServices(tt.services, tt.namespace, tt.listenerHosts)
    			if !reflect.DeepEqual(got, tt.expected) {
    				gots, _ := json.MarshalIndent(got, "", "  ")
    				expecteds, _ := json.MarshalIndent(tt.expected, "", "  ")
    				t.Errorf("Got %v, expected %v", string(gots), string(expecteds))
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    	if goarch == "ppc64" && goos != "aix" {
    		return false
    	}
    	return true
    }
    
    func (t *tester) internalLink() bool {
    	if gohostos == "dragonfly" {
    		// linkmode=internal fails on dragonfly since errno is a TLS relocation.
    		return false
    	}
    	if goos == "android" {
    		return false
    	}
    	if goos == "ios" {
    		return false
    	}
    	if goos == "windows" && goarch == "arm64" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// prefer using heapArenaBytes where possible (we need the
    	// constant to compute some other constants).
    	logHeapArenaBytes = (6+20)*(_64bit*(1-goos.IsWindows)*(1-goarch.IsWasm)*(1-goos.IsIos*goarch.IsArm64)) + (2+20)*(_64bit*goos.IsWindows) + (2+20)*(1-_64bit) + (2+20)*goarch.IsWasm + (2+20)*goos.IsIos*goarch.IsArm64
    
    	// heapArenaBitmapWords is the size of each heap arena's bitmap in uintptrs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	if *target != "" {
    		// When -target is set, propagate it to GOOS/GOARCH in our environment
    		// so that all commands run with the target GOOS/GOARCH.
    		//
    		// We do this before even calling "go env", because GOOS/GOARCH can
    		// affect other settings we get from go env (notably CGO_ENABLED).
    		goos, goarch, ok := strings.Cut(*target, "/")
    		if !ok {
    			t.Fatalf("bad -target flag %q, expected goos/goarch", *target)
    		}
    		t.Setenv("GOOS", goos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/os/os_test.go

    		return s
    	}
    
    	if got, want := names(mustReadDir("initial readdir")),
    		[]string{"good1", "good2", "x"}; !reflect.DeepEqual(got, want) {
    		t.Errorf("initial readdir got %q; want %q", got, want)
    	}
    
    	xerr = ErrNotExist
    	if got, want := names(mustReadDir("with x disappearing")),
    		[]string{"good1", "good2"}; !reflect.DeepEqual(got, want) {
    		t.Errorf("with x disappearing, got %q; want %q", got, want)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. src/go/build/build.go

    // goodOSArchFile returns false if the name contains a $GOOS or $GOARCH
    // suffix which does not match the current system.
    // The recognized name formats are:
    //
    //	name_$(GOOS).*
    //	name_$(GOARCH).*
    //	name_$(GOOS)_$(GOARCH).*
    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    // if GOOS=android, then files with GOOS=linux are also matched.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.grepStdout("linux amd64", "unexpected GOOS/GOARCH combination")
    
    	tg.setenv("GOOS", "darwin")
    	tg.setenv("GOARCH", "arm64")
    	tg.run("generate", "gen")
    	tg.grepStdout("darwin arm64", "unexpected GOOS/GOARCH combination")
    }
    
    func TestGoEnv(t *testing.T) {
    	tg := testgo(t)
    	tg.parallel()
    	defer tg.cleanup()
    	tg.setenv("GOOS", "freebsd") // to avoid invalid pair errors
    	tg.setenv("GOARCH", "arm")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Gets the number of successful tests.
      int successful_test_count() const;
    
      // Gets the number of failed tests.
      int failed_test_count() const;
    
      // Gets the number of disabled tests that will be reported in the XML report.
      int reportable_disabled_test_count() const;
    
      // Gets the number of disabled tests.
      int disabled_test_count() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	if ldr.SymGot(s) >= 0 {
    		return
    	}
    
    	Adddynsym(ldr, target, syms, s)
    	got := ldr.MakeSymbolUpdater(syms.GOT)
    	ldr.SetGot(s, int32(got.Size()))
    	got.AddUint(target.Arch, 0)
    
    	if target.IsElf() {
    		if target.Arch.PtrSize == 8 {
    			rela := ldr.MakeSymbolUpdater(syms.Rela)
    			rela.AddAddrPlus(target.Arch, got.Sym(), int64(ldr.SymGot(s)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top