Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,528 for BAR (0.02 sec)

  1. pkg/credentialprovider/keyring_test.go

    	}
    }
    
    func TestIsDefaultRegistryMatch(t *testing.T) {
    	samples := []map[bool]string{
    		{true: "foo/bar"},
    		{true: "docker.io/foo/bar"},
    		{true: "index.docker.io/foo/bar"},
    		{true: "foo"},
    		{false: ""},
    		{false: "registry.tld/foo/bar"},
    		{false: "registry:5000/foo/bar"},
    		{false: "myhostdocker.io/foo/bar"},
    	}
    	for _, sample := range samples {
    		for expected, imageName := range sample {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

            when:
            lockFileReaderWriter.writeUniqueLockfile([b: ['foo', 'bar'], d: ['bar', 'foobar'],a: ['foo'], e: [], f: [], c: []])
    
            then:
            tmpDir.file(LockFileReaderWriter.UNIQUE_LOCKFILE_NAME).text == """${LockFileReaderWriter.LOCKFILE_HEADER_LIST.join('\n')}
    bar=b,d
    foo=a,b
    foobar=d
    empty=c,e,f
    """.denormalize()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/PrecompiledPluginsCompileAvoidanceIntegrationTest.kt

            withPrecompiledScriptPluginInBuildSrc(
                pluginId,
                """
                    tasks.register("foo") { doLast { println("bar from task") } }
                """
            )
            configureProject("foo").assertBuildScriptCompilationAvoided().assertOutputContains("bar from task")
        }
    
        @Test
        fun `recompiles buildscript when plugins applied from a precompiled plugin change`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. hack/testdata/dockerconfig.json

    {
        "auths":{
            "http://foo.example.com":{
                "username":"foo",
                "password":"bar",
                "email":"******@****.***"
            },
            "http://bar.example.com":{
                "username":"bar",
                "password":"baz",
                "email":"bar@example.com"
            }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 15 04:14:03 UTC 2020
    - 311 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts_with_exportto.yaml

      namespace: foo
    spec:
      hosts:
      - '*.productpage' # should generate an error as this conflicts with VirtualService bar/productpage
      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: productpage
      namespace: bar
    spec:
      hosts:
      - '*.productpage' # should generate an error as this conflicts with VirtualService foo/productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

            enablePrecompiledPluginsInBuildSrc()
            file("buildSrc/src/main/groovy/plugins/foo.bar.gradle") << "println 'foo.bar applied'"
            file("buildSrc/src/main/groovy/plugins/baz.bar.gradle") << "println 'baz.bar applied'"
    
            buildFile << """
                plugins {
                    id 'foo.bar'
                    id 'baz.bar'
                }
            """
    
            when:
            succeeds("help")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r62/CapturingMultipleUserInputCrossVersionSpec.groovy

                        System.out.println("${FOO.answerPrefix} " + fooAnswer);
    
                        String barAnswer = userInputHandler.askUser(it -> it.askQuestion("${BAR.question}", "${BAR.defaultAnswer}")).get();
                        System.out.println("${BAR.answerPrefix} " + barAnswer);
                    }
                }
            """
    
            file('build.gradle') << """
                apply plugin: MultipleUserInputPlugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue5172.go

    package main
    
    type foo struct {
    	x bar // ERROR "undefined"
    }
    
    type T struct{}
    
    func (t T) Bar() {}
    
    func main() {
    	var f foo
    	go f.bar()    // ERROR "undefined"
    	defer f.bar() // ERROR "undefined"
    
    	t := T{1} // ERROR "too many"
    	go t.Bar()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 506 bytes
    - Viewed (0)
  9. pkg/apis/core/taint_test.go

    			taint: &Taint{
    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    			taintToMatch: Taint{
    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    			expectMatch: true,
    		},
    		{
    			description: "two taints with the same key,effect but different value should match",
    			taint: &Taint{
    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 16 13:06:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/test/groovy/com/myorg/JavaConventionPluginTest.groovy

                    @Deprecated
                    public void deprecatedMethod() {}
                }
            """
    
            new File(testProjectDir, 'src/main/java/com/myorg/Bar.java') << """
                package com.myorg;
    
                public class Bar {
                    public void bar() {
                        new Foo().deprecatedMethod();
                    }
                }
            """
    
            when:
            def result = runTask('build')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top