Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for csproduct (0.2 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/user-feature/table/build.gradle.kts

    plugins {
        id("com.example.java-library")
    }
    
    group = "${group}.user-feature"
    
    dependencies {
        implementation(project(":data"))
    
        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
    - 204 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/user-feature/table/build.gradle

    plugins {
        id('com.example.java-library')
    }
    
    group = "${group}.user-feature"
    
    dependencies {
        implementation(project(':data'))
    
        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
    - 204 bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    Google Guice - Core Library Copyright 2006-2022 Google, Inc. This product includes software developed at The Apache Software Foundation (http://www.apache.org/). META-INF/NOTICE in archive lib/plexus-utils-3.2.1.jar This product includes software developed by the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/). This product includes software developed by The Apache Software Foundation (http://www.apache.org/). This product includes software developed by ThoughtWorks (http://www.thoughtworks.com)....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea to improve Istio
    
    ---
    (This is used to request new product features, please visit <https://github.com/istio/istio/discussions> for questions on using Istio)
    
    **Describe the feature request**
    
    **Describe alternatives you've considered**
    
    **Affected product area (please put an X in all that apply)**
    
    [ ] Ambient
    [ ] Docs
    [ ] Dual Stack
    [ ] Installation
    [ ] Networking
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:42:48 UTC 2024
    - 707 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/structuring-software-projects/server-application/app/src/main/java/com/example/myproduct/server/MyProductApplication.java

    package com.example.myproduct.server;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class MyProductApplication {
        public static void main(String[] args) {
            SpringApplication.run(MyProductApplication.class, args);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 337 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/structuring-software-projects/state/application-state/src/main/kotlin/com/example/myproduct/admin/state/ConfigurationState.kt

    package com.example.myproduct.admin.state
    
    object ConfigurationState {
        val rangeSetting = VersionRangeSetting()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 118 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/structuring-software-projects/domain-model/release/src/main/kotlin/com/example/myproduct/model/MyProductRelease.kt

    package com.example.myproduct.model
    
    data class MyProductRelease(
            val version: String,
            val releaseNotes: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 130 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/structuring-software-projects/domain-model/release/src/main/kotlin/com/example/myproduct/model/MyProductReleaseList.kt

    package com.example.myproduct.model
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 107 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/structuring-software-projects/admin-feature/config/src/main/kotlin/com/example/myproduct/admin/config/VersionRange.kt

    package com.example.myproduct.admin.config
    
    data class VersionRange(
            var fromVersion: String = "",
            var toVersion: String = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 144 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/android-app/app/build.gradle.kts

    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)
Back to top