Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 183 for broot (0.48 sec)

  1. istioctl/cmd/root.go

    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. cni/pkg/cmd/root.go

    John Howard <******@****.***> 1718209595 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            root.maybeCollectStrictVersions(constraintsSet, edge(root).dependencyState)
            root.maybeCollectStrictVersions(constraintsSet, edge(root, false).dependencyState)
            root.maybeCollectStrictVersions(constraintsSet, edge(root).dependencyState)
            root.maybeCollectStrictVersions(constraintsSet, edge(root, false).dependencyState)
            root.storeOwnStrictVersions(constraintsSet)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            }
            outputContains("configuring root")
            outputContains("creating model with parameter='fetch1' for root project 'root'")
            outputContains("creating model with parameter='fetch2' for root project 'root'")
    
            and:
            models.keySet() ==~ [":"]
            models.values().every { it.size() == 4 }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

            /**
             * @param root The root dependency
             * @return this request for chaining, never {@code null}
             */
            @Nonnull
            public DependencyResolverRequestBuilder root(@Nonnull DependencyCoordinate root) {
                this.root = root;
                return this;
            }
    
            /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleLifecycleIntegrationTest.groovy

            fixture.assertStateStored {
                projectsConfigured(":buildSrc", ":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
    
            outputContains("Callback before root project 'root'")
            outputContains("Callback before project ':a'")
            outputContains("Callback before project ':b'")
    
    
            when:
            withIsolatedProjects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

                            addSourceRoot(testDataPath(root).resolve("dependent"))
                            platform = JvmPlatforms.defaultJvmPlatform
                            moduleName = "dependent"
                        }
                    )
                    sourceModule = addModule(
                        buildKtSourceModule {
                            addSourceRoot(testDataPath(root).resolve("main"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

                rootProject.name = 'root'
    
                include(":lib1")
                include(":lib1:lib11")
            """
    
            when: "fetching without Isolated Projects"
            def expectedProjectModel = fetchModel(GradleProject)
    
            then:
            fixture.assertNoConfigurationCache()
    
            with(expectedProjectModel) {
                it.name == "root"
                it.tasks.size() > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                modelsReused(":a", ":b", ":buildSrc")
            }
            outputContains("creating model for root project 'root'")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model4 = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model4.size() == 2
            model4[0].message == "this is the root project"
            model4[1].message == "It works from project :a"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

                modelsCreated(":")
                modelsReused(":buildSrc")
            }
            outputContains("creating model for root project 'root'")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model4 = fetchModel()
    
            then:
            model4.message == "this is the root project"
    
            and:
            fixture.assertStateLoaded()
        }
    
        def "can cache models with tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top