Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for csproduct (0.28 sec)

  1. platforms/documentation/docs/src/samples/templates/structuring-software-projects/state/application-state/src/main/kotlin/com/example/myproduct/admin/state/VersionRangeSetting.kt

    package com.example.myproduct.admin.state
    
    data class VersionRangeSetting(
            var minVersion: String = "",
            var maxVersion: String = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 150 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/android-app/app/build.gradle

    plugins {
        id('com.example.android-application')
    }
    
    group = "${group}.android-app"
    
    dependencies {
        implementation('com.example.myproduct.user-feature:table')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 167 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/admin-feature/config/build.gradle.kts

    plugins {
        id("com.example.kotlin-library")
    }
    
    group = "${group}.admin-feature"
    
    dependencies {
        implementation("com.example.myproduct.state:application-state")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 169 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/user-feature/data/build.gradle

    // tag::project-type[]
    plugins {
        id('com.example.java-library')
    }
    // end::project-type[]
    
    group = "${group}.user-feature"
    
    dependencies {
        api('com.example.myproduct.model:release')
    
        implementation('com.fasterxml.jackson.core:jackson-databind')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 258 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/admin-feature/config/build.gradle

    plugins {
        id('com.example.kotlin-library')
    }
    
    group = "${group}.admin-feature"
    
    dependencies {
        implementation('com.example.myproduct.state:application-state')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 169 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/android-application/src/main/groovy/com.example.android-application.gradle

    plugins {
        id('com.android.application')
        id('org.jetbrains.kotlin.android')
    }
    
    group = 'com.example.myproduct'
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    android {
        compileSdkVersion(28)
        defaultConfig {
            minSdkVersion(24)
            targetSdkVersion(28)
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 674 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/user-feature/data/build.gradle.kts

    // tag::project-type[]
    plugins {
        id("com.example.java-library")
    }
    // end::project-type[]
    
    group = "${group}.user-feature"
    
    dependencies {
        api("com.example.myproduct.model:release")
    
        implementation("com.fasterxml.jackson.core:jackson-databind")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 258 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top