Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for badc (0.05 sec)

  1. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    		b.Fatalf("target fails inconsistently")
    	}
    	bad1 := b.search(r1)
    	if bad1 == nil {
    		// Search failed due to MaxSet limit.
    		return nil
    	}
    	b.Add = b.Add[:old]
    
    	// bad0 and bad1 together provoke the failure.
    	return append(bad0, bad1...)
    }
    
    // Run runs a set of trials selecting changes with the given suffix,
    // plus the ones in b.Add and not the ones in b.Skip.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        }
    
        static class TypeWithUnannotatedProperties extends DefaultTask {
            String bad1
            File bad2
            @Input
            String useful
        }
    
        def "warns about and ignores properties that are not annotated"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/kube/inject/watcher_test.go

    	steps := []struct {
    		added   *v1.ConfigMap
    		updated *v1.ConfigMap
    		deleted *v1.ConfigMap
    	}{
    		{added: cm},
    
    		// Handle misconfiguration errors.
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM2},
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM3},
    		{updated: cm},
    
    		// Handle deletion.
    		{deleted: cm},
    		{added: cm},
    	}
    
    	for i, step := range steps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue46653.dir/bad/bad.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    func Bad() {
    	m := make(map[int64]A)
    	a := m[0]
    	if len(a.B.C1.D2.E2.F1) != 0 ||
    		len(a.B.C1.D2.E2.F2) != 0 ||
    		len(a.B.C1.D2.E2.F3) != 0 ||
    		len(a.B.C1.D2.E2.F4) != 0 ||
    		len(a.B.C1.D2.E2.F5) != 0 ||
    		len(a.B.C1.D2.E2.F6) != 0 ||
    		len(a.B.C1.D2.E2.F7) != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 09 02:18:34 UTC 2021
    - 953 bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/ignore/bad.file

    Peter Niederwieser <******@****.***> 1329340464 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 25 bytes
    - Viewed (0)
  6. pkg/config/mesh/kubemesh/watcher_test.go

    		{added: cm, expect: m},
    
    		// Handle misconfiguration errors.
    		{updated: badCM, expect: m},
    		{updated: cm, expect: m},
    		{updated: badCM2, expect: m},
    		{updated: badCM, expect: m},
    		{updated: cm, expect: m},
    
    		{deleted: cm, expect: mesh.DefaultMeshConfig()},
    		{added: badCM, expect: mesh.DefaultMeshConfig()},
    	}
    
    	for i, step := range steps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue47185.dir/bad/bad.go

    // license that can be found in the LICENSE file.
    
    package a
    
    // Note that the use of CGO here is solely to trigger external
    // linking, since that is required to trigger that bad behavior
    // in this bug.
    
    // #include <stdlib.h>
    import "C"
    
    func Bad() {
    	m := make(map[int64]A)
    	a := m[0]
    	if len(a.B.C1.D2.E2.F1) != 0 ||
    		len(a.B.C1.D2.E2.F2) != 0 ||
    		len(a.B.C1.D2.E2.F3) != 0 ||
    		len(a.B.C1.D2.E2.F4) != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 19 13:27:46 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/mono_test.go

    	for i, good := range goods {
    		if err := checkMono(t, good); err != nil {
    			t.Errorf("%d: unexpected failure: %v", i, err)
    		}
    	}
    }
    
    func TestMonoBad(t *testing.T) {
    	for i, bad := range bads {
    		if err := checkMono(t, bad); err == nil {
    			t.Errorf("%d: unexpected success", i)
    		} else {
    			t.Log(err)
    		}
    	}
    }
    
    var goods = []string{
    	"func F[T any](x T) { F(x) }",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/go/parser/testdata/issue11377.src

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for go.dev/issue/11377: Better synchronization of
    // parser after certain syntax errors.
    
    package p
    
    func bad1() {
        if f()) /* ERROR "expected ';', found '\)'" */ {
            return
        }
    }
    
    // There shouldn't be any errors down below.
    
    func F1() {}
    func F2() {}
    func F3() {}
    func F4() {}
    func F5() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 542 bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/sub/ignore/bad.file

    Peter Niederwieser <******@****.***> 1329340464 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - Viewed (0)
Back to top