Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bindIf (0.18 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jakartaActivation = "com.sun.activation:jakarta.activation"
        val jakartaXmlBind = "jakarta.xml.bind:jakarta.xml.bind-api"
        val jansi = "org.fusesource.jansi:jansi"
        val jatl = "com.googlecode.jatl:jatl"
        val javaPoet = "com.squareup:javapoet"
        val jaxbCore = "com.sun.xml.bind:jaxb-core"
        val jaxbImpl = "com.sun.xml.bind:jaxb-impl"
        val jcifs = "jcifs:jcifs"
        val jclToSlf4j = "org.slf4j:jcl-over-slf4j"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  2. build-logic-commons/build-platform/build.gradle.kts

            api("commons-lang:commons-lang:2.6")
            api("io.mockk:mockk:1.12.4")
            api("javax.activation:activation:1.1.1")
            api("javax.xml.bind:jaxb-api:2.3.1")
            api("com.sun.xml.bind:jaxb-core:2.2.11")
            api("com.sun.xml.bind:jaxb-impl:2.2.11")
            api("junit:junit:4.13.2")
            api("org.spockframework:spock-core:$spockVersion")
            api("org.spockframework:spock-junit4:$spockVersion")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            return project.getConfigurations().detachedConfiguration(
                    dependencies.create("javax.xml.bind:jaxb-api:2.3.0"),
                    dependencies.create("com.sun.xml.bind:jaxb-core:2.3.0.1"),
                    dependencies.create("com.sun.xml.bind:jaxb-impl:2.3.0.1"),
                    dependencies.create("javax.activation:activation:1.1.1")
            );
        }
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 13.3K bytes
    - Viewed (0)
  4. LICENSE

          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
          the original version of the Work and any modifications or additions
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 11:07:23 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  5. .cm/plugins/filters/byCodeowner/ignore/index.js

    const makeRegex = (pattern, ignoreCase) => {
        let source = regexCache[pattern]
    
        if (!source) {
            source = REPLACERS.reduce(
                (prev, current) => prev.replace(current[0], current[1].bind(pattern)),
                pattern
            )
            regexCache[pattern] = source
        }
    
        return ignoreCase
            ? new RegExp(source, 'i')
            : new RegExp(source)
    }
    
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top