Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for modularity (0.33 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

            given:
            publishJavaModule('moda')
            consumingModuleInfo('requires moda')
            buildFile << """
                java.modularity.inferModulePath = false
            """
    
            when:
            fails ':compileJava'
    
            then:
            failure.assertHasErrorOutput 'module-info.java:1: error: module not found: moda'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/execution/JavaModuleExecutionIntegrationTest.groovy

        def "does not run as module if module path inference is turned off"() {
            given:
            buildFile.text = buildFile.text.replace('java-library', 'application')
            buildFile << """
                tasks.run.modularity.inferModulePath = false
                application {
                    mainClass.set('consumer.MainModule')
                    mainModule.set('consumer')
                }
            """
            publishJavaModule('moda')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/test/JavaModuleBackboxTestExcutionIntegrationTest.groovy

        }
    
        def "runs JUnit4 module test on classpath if module path inference is turned off"() {
            given:
            buildFile << """
                tasks.test.modularity.inferModulePath = false
                dependencies { testImplementation 'junit:junit:4.13' }
            """
    
            when:
            consumingModuleInfo('exports consumer')
            consumingModuleClass()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. manifests/charts/README.md

    Istio installer is a modular, 'a-la-carte' installer for Istio. It is based on a
    fork of the Istio helm templates, refactored to increase modularity and isolation.
    
    Goals:
    - Improve upgrade experience: users should be able to gradually roll upgrades, with proper
    canary deployments for Istio components. It should be possible to deploy a new version while keeping the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/go/doc/testdata/examples/issue43658.golden

    	"log"
    	"sort"
    
    	"golang.org/x/exp/rand"
    
    	"gonum.org/v1/gonum/graph/community"
    	"gonum.org/v1/gonum/graph/internal/ordered"
    	"gonum.org/v1/gonum/graph/simple"
    )
    
    func main() {
    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    	// consistency between test runs. In practice, results will not differ greatly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. src/go/doc/testdata/examples/issue43658.go

    	"sort"
    
    	"golang.org/x/exp/rand"
    
    	"gonum.org/v1/gonum/graph/community"
    	"gonum.org/v1/gonum/graph/internal/ordered"
    	"gonum.org/v1/gonum/graph/simple"
    )
    
    func ExampleProfile_simple() {
    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    	// consistency between test runs. In practice, results will not differ greatly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top