Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,487 for bin2 (0.05 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/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

        }
    
        def "windows searches for executable in path"() {
            def exe = tmpDir.createFile("bin/a.exe")
            tmpDir.createFile("bin2/a.exe")
            def os = new OperatingSystem.Windows() {
                @Override
                List<File> getPath() {
                    return [tmpDir.file("bin"), tmpDir.file("bin2")]
                }
            }
    
            expect:
            os.findInPath("a.exe") == exe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace stablehlo::quantization {
    
    // Calculates the bin width from the range and expected number of bins. The
    // bin width is formalized to the form of 2^n. As a consequence, the actual
    // number of bins might be smaller than the given `num_bins`.
    inline float CalculateBinWidth(const float min_value, const float max_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top