Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 488 for csproduct (0.2 sec)

  1. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #     # This means that String includes GreaterThan at MEMBER.MEMBER_ACCOUNT only
    #     # and LessThan at PRODUCT.PRODUCT_NAME and PRODUCT.PRODUCT_HANDLE_CODE,
    #     # and InScope for LONGVARCHAR(e.g. text type) is excluded.
    #     ; String = map:{
    #         ; GreaterThan = map:{ MEMBER = list:{ MEMBER_ACCOUNT } }
    #         ; LessThan = map:{ PRODUCT = list:{ PRODUCT_NAME ; PRODUCT_HANDLE_CODE } }
    #         ; !InScope = map:{ $$ALL$$ = list:{ type:LONGVARCHAR } }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/BigIntegerMath.java

          // If it won't fit in a long, then we store off the intermediate product.
          if (normalizedBits + productBits >= Long.SIZE) {
            bignums.add(BigInteger.valueOf(product));
            product = 1;
            productBits = 0;
          }
          product *= normalizedNum;
          productBits = LongMath.log2(product, FLOOR) + 1;
        }
        // Check for leftovers.
        if (product > 1) {
          bignums.add(BigInteger.valueOf(product));
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/swiftpm/internal/AbstractProduct.java

     * limitations under the License.
     */
    
    package org.gradle.swiftpm.internal;
    
    import org.gradle.swiftpm.Product;
    
    import java.io.Serializable;
    
    public abstract class AbstractProduct implements Product, Serializable {
        private final String name;
        private final DefaultTarget target;
    
        AbstractProduct(String name, DefaultTarget target) {
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/math/fma.go

    	ys, ye, ym := split(by)
    	zs, ze, zm := split(bz)
    
    	// Compute product p = x*y as sign, exponent, two-word mantissa.
    	// Start with exponent. "is normal" bit isn't subtracted yet.
    	pe := xe + ye - bias + 1
    
    	// pm1:pm2 is the double-word mantissa for the product p.
    	// Shift left to leave top bit in product. Effectively
    	// shifts the 106-bit product to the left by 21.
    	pm1, pm2 := bits.Mul64(xm<<10, ym<<11)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/LICENSE

     * OF THE POSSIBILITY OF SUCH DAMAGE.
     * ====================================================================
     *
     * This product includes cryptographic software written by Eric Young
     * (******@****.***).  This product includes software written by Tim
     * Hudson (******@****.***).
     *
     */
    
     Original SSLeay License
     -----------------------
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            when:
            project.evaluate()
    
            then:
            def p = generateManifest.package.get()
            p != null
            p == generateManifest.package.get()
        }
    
        def "adds an executable product for each project that produces a C++ application"() {
            given:
            def app1Project = ProjectBuilder.builder().withName("app1").withParent(project).build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.commons.gradle

    plugins {
        id('java')
        id('com.example.jacoco')
    }
    
    group = 'com.example.myproduct'
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    dependencies {
        implementation(platform('com.example.platform:product-platform'))
    
        testImplementation(platform('com.example.platform:test-platform'))
        testImplementation('org.junit.jupiter:junit-jupiter')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 505 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/commons/src/main/kotlin/com.example.commons.gradle.kts

    plugins {
        id("java")
        id("com.example.jacoco")
    }
    
    group = "com.example.myproduct"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    dependencies {
        implementation(platform("com.example.platform:product-platform"))
    
        testImplementation(platform("com.example.platform:test-platform"))
        testImplementation("org.junit.jupiter:junit-jupiter")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 496 bytes
    - Viewed (0)
  9. logo/usage_guidelines.md

    >compatibility must, of course, be accurate, the use of these marks must
    >avoid confusion regarding The Linux Foundation’s association with the
    >product. The use of the mark cannot imply that The Linux Foundation or
    >its projects are sponsoring or endorsing the product.
    
    Additionally, permission is granted to modify the Kubernetes mark for non-commercial uses such as t-shirts and stickers.
    
    ## Links to logo images
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example/app/build.gradle

            jvmTarget = '1.8'
        }
    }
    
    project.afterEvaluate {
        // Grab all build types and product flavors
        def buildTypes = android.buildTypes.collect { type ->
            type.name
        }
        def productFlavors = android.productFlavors.collect { flavor ->
            flavor.name
        }
        // When no product flavors defined, use empty
        if (!productFlavors) productFlavors.add('')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top