Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for badbad (0.15 sec)

  1. src/archive/zip/testdata/test-badbase.zip

    Ian Lance Taylor <******@****.***> 1673468240 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 01:04:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/timeformat/timeformat.go

    			return
    		}
    		if len(call.Args) > 0 {
    			arg := call.Args[0]
    			badAt := badFormatAt(pass.TypesInfo, arg)
    
    			if badAt > -1 {
    				// Check if it's a literal string, otherwise we can't suggest a fix.
    				if _, ok := arg.(*ast.BasicLit); ok {
    					pos := int(arg.Pos()) + badAt + 1 // +1 to skip the " or `
    					end := pos + len(badFormat)
    
    					pass.Report(analysis.Diagnostic{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGConsoleLoggingIntegrationTest.groovy

                        beBad()
                    }
    
                    @Test(dependsOnMethods = ["badTest"])
                    void ignoredTest() {}
    
                    @Test(dependsOnMethods = ["goodTest"])
                    void printTest() {
                        println "line 1\\nline 2"
                        println "line 3"
                    }
    
                    private beBad() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (1)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

                ${maybeParentheses('badTest')} FAILED
                    java.lang.RuntimeException: bad
                        at org.gradle.SomeTest.beBad(SomeTest.java:${lineNumberOf('throw new RuntimeException("bad")')})
                        at org.gradle.SomeTest.badTest(SomeTest.java:${lineNumberOf('beBad();')})
            """.stripIndent())
    
            outputContains("${maybeParentheses('ignoredTest')} SKIPPED")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/PluginPrefixResolverStub.java

            return new PluginPrefixResult() {
                public String getGroupId() {
                    return "com.foobar";
                }
    
                public String getArtifactId() {
                    return "bazbaz";
                }
    
                public ArtifactRepository getRepository() {
                    return null;
                }
            };
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_fs_patterns.txt

    syntax error!
    
    -- x/y/z/z.go --
    package z
    
    -- x/y/z/w/w.go --
    package w
    
    -- @at/go.mod --
    module at
    
    go 1.14
    -- @at/at.go --
    package at
    
    -- badat/go.mod --
    module badat
    
    go 1.14
    -- badat/bad@/bad.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/sync/atomic/value_test.go

    	var v Value
    	v.Store("foo")
    	x := v.Load()
    	if xx, ok := x.(string); !ok || xx != "foo" {
    		t.Fatalf("wrong value: got %+v, want foo", x)
    	}
    	v.Store("barbaz")
    	x = v.Load()
    	if xx, ok := x.(string); !ok || xx != "barbaz" {
    		t.Fatalf("wrong value: got %+v, want barbaz", x)
    	}
    }
    
    func TestValuePanic(t *testing.T) {
    	const nilErr = "sync/atomic: store of nil value into Value"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  8. operator/pkg/validate/validate_test.go

    tag: v1.2.3
    meshConfig:
      rootNamespace: istio-system
    values:
      global:
        proxy:
          includeIPRanges: "1.1.0.0/16,2.2.0.0/16"
          excludeIPRanges: "3.3.0.0/16,4.4.0.0/16"
    
    `,
    		},
    		{
    			desc: "BadTag",
    			yamlStr: `
    hub: ?illegal-tag!
    `,
    			wantErrs: makeErrors([]string{`invalid value Hub: ?illegal-tag!`}),
    		},
    		{
    			desc: "BadHub",
    			yamlStr: `
    hub: docker.io:tag/istio
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. src/internal/coverage/pods/pods_test.go

    		if exp != got {
    			t.Errorf("pod %d: expected:\n%s\ngot:\n%s", k, exp, got)
    		}
    	}
    
    	// Check handling of bad/unreadable dir.
    	if runtime.GOOS == "linux" {
    		dbad := "/dev/null"
    		_, err = pods.CollectPods([]string{dbad}, true)
    		if err == nil {
    			t.Errorf("executed error due to unreadable dir")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:00:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

                ${setAll("foo", "fooBar")}
                ${addToBaz("foo")}
            """)
            file("bar/build.gradle.dcl") << getDeclarativeScriptThatConfiguresOnlyTestSoftwareType("""
                ${setAll("bar", "barBar")}
                ${dependencies(implementation("bar:foo:2.0"))}
            """)
    
            when:
            run(":foo:printTestSoftwareTypeExtensionWithDependenciesConfiguration")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top