Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,031 for bin2 (0.04 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/BinaryBasePluginTest.groovy

                model {
                    binaries {
                        bin1(BinarySpec)
                        bin2(BinarySpec)
                    }
                }
            }
    
            then:
            def binaries = realizeBinaries()
            binaries.size() == 2
            binaries.bin1.buildTask instanceof DefaultTask
            binaries.bin1.buildTask.name == 'bin1'
            binaries.bin2.buildTask instanceof DefaultTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/ComponentModelBasePluginTest.groovy

                                bin1(BinarySpec)
                                bin2(BinarySpec)
                            }
                        }
                        comp2(ComponentSpec)
                    }
                }
            }
    
            then:
            def tasks = realizeTasks()
            def components = realizeComponents()
            tasks.comp1Bin1 == components.comp1.binaries.bin1.tasks.build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/test-suites-base/src/test/groovy/org/gradle/testing/base/plugins/TestingModelBasePluginTest.groovy

                model {
                    testSuites {
                        comp1(TestSuiteSpec) {
                            binaries {
                                bin1(BinarySpec)
                                bin2(BinarySpec)
                            }
                        }
                        comp2(TestSuiteSpec)
                    }
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/SourceFolderTest.groovy

    import spock.lang.Specification
    
    class SourceFolderTest extends Specification {
        final static String XML_TEXT = '''
                    <classpathentry including="**/Test1*|**/Test2*" excluding="**/Test3*|**/Test4*" kind="src" output="bin2" path="src">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/eclipse/model/customClasspath.xml

    	<classpathentry kind="lib" path="/apache-ant-1.7.1/lib/ant-antlr.jar"/>
    	<classpathentry kind="src" output="bin2" path="src"/>
    	<classpathentry kind="var" path="GRADLE_CACHE/ant-1.6.5.jar"/>
    	<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/gradle"/>
    	<classpathentry kind="output" path="bin"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 563 bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            new Library(fileReferenceFactory.fromPath("/apache-ant-1.7.1/lib/ant-antlr.jar")),
            new SourceFolder("src", "bin2"),
            new Variable(fileReferenceFactory.fromVariablePath("GRADLE_CACHE/ant-1.6.5.jar")),
            new Container("org.eclipse.jdt.USER_LIBRARY/gradle"),
            new Output("bin")]
        final projectDependency = [customEntries[0]]
        final jreContainer = [customEntries[1]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/bin.xml

    -->
    
    <assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
      <id>bin</id>
      <formats>
        <format>zip</format>
        <format>tar.gz</format>
      </formats>
      <componentDescriptors>
        <componentDescriptor>src/assembly/component.xml</componentDescriptor>
      </componentDescriptors>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 27 13:14:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/main/assemblies/targz-bin.xml

    <assembly>
    	<id>targz</id>
    	<formats>
    		<format>tar.gz</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<componentDescriptors>
    		<componentDescriptor>src/main/assemblies/common-bin.xml
    		</componentDescriptor>
    	</componentDescriptors>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 13 08:20:29 UTC 2015
    - 296 bytes
    - Viewed (0)
  9. pkg/scheduler/profile/profile_test.go

    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    var fakeRegistry = frameworkruntime.Registry{
    	"QueueSort": newFakePlugin("QueueSort"),
    	"Bind1":     newFakePlugin("Bind1"),
    	"Bind2":     newFakePlugin("Bind2"),
    	"Another":   newFakePlugin("Another"),
    }
    
    func TestNewMap(t *testing.T) {
    	cases := []struct {
    		name    string
    		cfgs    []config.KubeSchedulerProfile
    		wantErr string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/CachingLibraryBinaryLocatorTest.groovy

            def lib = new LibraryIdentifier("project", "lib")
            def bins = Stub(DomainObjectSet)
    
            when:
            def bins1 = locator.getBinaries(lib)
            def bins2 = locator.getBinaries(lib)
    
            then:
            bins1.is(bins)
            bins2.is(bins)
    
            and:
            1 * target.getBinaries(lib) >> bins
            0 * target._
        }
    
        def "caches null result"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top