Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,590 for whave (0.12 sec)

  1. src/cmd/internal/obj/x86/asm_test.go

    func TestOclass(t *testing.T) {
    	runTest := func(t *testing.T, ctxt *obj.Link, tests []*oclassTest) {
    		var p obj.Prog
    		for _, test := range tests {
    			have := oclass(ctxt, &p, test.arg)
    			if have != test.want {
    				t.Errorf("oclass(%q):\nhave: %d\nwant: %d",
    					obj.Dconv(&p, test.arg), have, test.want)
    			}
    		}
    	}
    
    	// TODO(quasilyte): test edge cases for Hsolaris, etc?
    
    	t.Run("linux/AMD64", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/internal/godebug/godebug_test.go

    		}
    	}
    	slices.Sort(want)
    
    	var have []string
    	for _, line := range strings.Split(string(out), "\n") {
    		if strings.Contains(line, "godebug_test.go:") {
    			have = append(have, line[strings.LastIndex(line, "godebug_test.go:"):])
    		}
    	}
    	slices.Sort(have)
    
    	if !reflect.DeepEqual(have, want) {
    		t.Errorf("bad bisect output:\nhave %v\nwant %v\ncomplete output:\n%s", have, want, string(out))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestListener.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.testing;
    
    // todo: consider multithreading/multiprocess issues
    // Teamcity has the concept of a "wave" of messages
    // where each thread/process uses a unique wave id
    
    import org.gradle.internal.DeprecatedInGradleScope;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/goroot_executable.txt

    		os.Exit(1)
    	}
    	want, err = filepath.EvalSymlinks(want)
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if !strings.EqualFold(goroot, want) {
    		fmt.Fprintf(os.Stderr, "go env GOROOT:\nhave %s\nwant %s\n", goroot, want)
    		os.Exit(1)
    	}
    	fmt.Fprintf(os.Stderr, "go env GOROOT: %s\n", goroot)
    
    }
    -- check_runtime_goroot.go --
    package main
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    [NOTE]
    ====
    At this stage, Gradle will _only_ make more builds fail.
    It will **not** automatically fix the problem for you, but it helps you realize that you have a problem.
    It is recommended to write such rules in _plugins_ which are then applied to your builds.
    Then, users _have to_ express their preferences, if possible, or fix the problem of having incompatible things on the classpath, as explained in the following section.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    		os.Exit(1)
    	}
    	want, err = filepath.EvalSymlinks(want)
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if !strings.EqualFold(goroot, want) {
    		fmt.Fprintf(os.Stderr, "go env GOROOT:\nhave %s\nwant %s\n", goroot, want)
    		os.Exit(1)
    	}
    	fmt.Fprintf(os.Stderr, "go env GOROOT: %s\n", goroot)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/test2json_test.go

    // future use, that future use will have obviously wrong data.
    func writeAndKill(w io.Writer, b []byte) {
    	w.Write(b)
    	for i := range b {
    		b[i] = 'Z'
    	}
    }
    
    // diffJSON diffs the stream we have against the stream we want
    // and fails the test with a useful message if they don't match.
    func diffJSON(t *testing.T, have, want []byte) {
    	t.Helper()
    	type event map[string]any
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue39634.go

    // crash 20
    type Z20 /* ERROR "invalid recursive type" */ interface{ Z20 }
    func F20[t Z20]() { F20(t /* ERROR "invalid composite literal type" */ /* ERROR "too many arguments in call to F20\n\thave (unknown type)\n\twant ()" */ {}) }
    
    // crash 21
    type Z21 /* ERROR "invalid recursive type" */ interface{ Z21 }
    func F21[T Z21]() { ( /* ERROR "not used" */ F21[Z21]) }
    
    // crash 24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.plugins.antlr.AntlrTask.getSource()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (AntlrTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/lookup2.go

    //
    // misspelled     x.foo   ==    Foo    type X has no field or method foo, but does have field Foo
    // misspelled     x.foo   ==    FoO    type X has no field or method foo, but does have field FoO
    // ok             x.foo   ==    foo
    // misspelled     x.foo   ==    foO    type X has no field or method foo, but does have field foO
    //
    // ok             x.Foo   !=    Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top