Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,291 for whave (0.11 sec)

  1. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/encoding/xml/xml_test.go

    		start := d.InputOffset()
    		have, err := d.RawToken()
    		end := d.InputOffset()
    		if err != nil {
    			t.Fatalf("token %d: unexpected error: %s", i, err)
    		}
    		if !reflect.DeepEqual(have, want) {
    			var shave, swant string
    			if _, ok := have.(CharData); ok {
    				shave = fmt.Sprintf("CharData(%q)", have)
    			} else {
    				shave = fmt.Sprintf("%#v", have)
    			}
    			if _, ok := want.(CharData); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. 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)
  4. src/encoding/xml/read_test.go

    		t.Fatalf("failed to unmarshal %q: %v", xml, err)
    	}
    	pea, ok := pod.Pea.(*Pea)
    	if !ok {
    		t.Fatalf("unmarshaled into wrong type: have %T want *Pea", pod.Pea)
    	}
    	have, want := pea.Cotelydon, "Green stuff"
    	if have != want {
    		t.Errorf("failed to unmarshal into interface, have %q want %q", have, want)
    	}
    }
    
    type X struct {
    	D string `xml:",comment"`
    }
    
    // Issue 11112. Unmarshal must reject invalid comments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/internal/types/testdata/check/issues0.go

    	i1 = i2 /* ERRORx `.* i2 .* as I1 .*: I2 does not implement I1 \(wrong type for method foo\)\n\t\thave foo\(int\)\n\t\twant foo\(\)` */
    	i1 = t2 /* ERRORx `.* t2 .* as I1 .*: \*T2 does not implement I1 \(wrong type for method foo\)\n\t\thave foo\(int\)\n\t\twant foo\(\)` */
    	i2 = i1 /* ERRORx `.* i1 .* as I2 .*: I1 does not implement I2 \(wrong type for method foo\)\n\t\thave foo\(\)\n\t\twant foo\(int\)` */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/lookup.go

    						}
    						obj = f
    						indirect = e.indirect
    						continue // we can't have a matching interface method
    					}
    					// Collect embedded struct fields for searching the next
    					// lower depth, but only if we have not seen a match yet
    					// (if we have a match it is either the desired field or
    					// we have a name collision on the same depth; in either
    					// case we don't need to look further).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/go/types/lookup.go

    						}
    						obj = f
    						indirect = e.indirect
    						continue // we can't have a matching interface method
    					}
    					// Collect embedded struct fields for searching the next
    					// lower depth, but only if we have not seen a match yet
    					// (if we have a match it is either the desired field or
    					// we have a name collision on the same depth; in either
    					// case we don't need to look further).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. 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)
Back to top