Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 813 for BAR (0.05 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

       <components>
          <component group="org" name="bar" version="1.0">
             <artifact name="bar-1.0-classy.jar">
                <sha1 value="${getChecksum(bar, "sha1", "jar", "classy")}" origin="Generated by Gradle"/>
                <sha512 value="${getChecksum(bar, "sha512", "jar", "classy")}" origin="Generated by Gradle"/>
             </artifact>
             <artifact name="bar-1.0.pom">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

                    public void foo() {
                    }
                }
            """
            file("src/myFeature/java/com/bar/Bar.java") << """
                package com.bar;
                import com.foo.Foo;
    
                public class Bar {
                    public void bar() {
                        Foo foo = new Foo();
                        foo.foo();
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. pkg/volume/projected/projected_test.go

    					Path: "foo.txt",
    				},
    				{
    					Key:  "bar",
    					Path: "bar.bin",
    				},
    			},
    			secret: &v1.Secret{
    				Data: map[string][]byte{
    					"foo": []byte("foo"),
    					"bar": []byte("bar"),
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"foo.txt": {Data: []byte("foo"), Mode: 0644},
    				"bar.bin": {Data: []byte("bar"), Mode: 0644},
    			},
    			success: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/tableconvertor/tableconvertor_test.go

    					{Name: "multi", Type: "string"},
    				},
    				additionalColumns: []columnPrinter{
    					newJSONPath("valueOnly", "{.spec.foo[0].bar[0]}"),
    					newJSONPath("single1", "{.spec.foo[0].bar}"),
    					newJSONPath("single2", "{.spec.foo[1].bar}"),
    					newJSONPath("multi", "{.spec.foo[*].bar}"),
    				},
    			},
    			args: args{
    				obj: &unstructured.Unstructured{
    					Object: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["*Foo+Bar*"]                       | "Foo+Bar"                 | "test"                | true
            ["*Foo+Bar*"]                       | "Foo+Bar"                 | "xxxx"                | true
            ["*Foo+Bar*"]                       | "com.Foo+Bar"             | "xxxx"                | true
            ["*Foo+Bar*"]                       | "FooBar"                  | "xxxx"                | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pkg/volume/configmap/configmap_test.go

    					Path: "foo.txt",
    				},
    				{
    					Key:  "bar",
    					Path: "bar.bin",
    				},
    			},
    			configMap: &v1.ConfigMap{
    				Data: map[string]string{
    					"foo": "foo",
    					"bar": "bar",
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"foo.txt": {Data: []byte("foo"), Mode: 0644},
    				"bar.bin": {Data: []byte("bar"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

                    "id 'noop'",
                    "id('noop').version('bar')",
                    "id 'noop' version 'bar'",
                    "id('noop').\nversion 'bar'",
                    "id('java');id('noop')",
                    "id('java')\nid('noop')",
                    "id('noop').version('bar');id('java')",
                    "id('noop').version('bar')\nid('java')",
                    "id 'noop' apply false",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top