Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,047 for multis (0.14 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

                        assert configurations.conf.files.collect { it.name } == expectedResult
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "can resolve subproject of multi-project source dependency"() {
            mappingFor(repo, "org.test:foo")
            buildFile << """
                dependencies {
                    conf 'org.test:foo:latest.integration'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The file can either be empty or define the desired name of the project.
    
    A multi-project build must have a `settings.gradle(.kts)` file in the root project of the multi-project hierarchy.
    It is required because the settings file defines which projects are taking part in a <<multi_project_builds.adoc#multi_project_builds,multi-project build>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-extension-dashboard.json

            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue20910.c

    #include <stdlib.h>
    #include <string.h>
    #include "_cgo_export.h"
    
    /* Test calling a Go function with multiple return values.  */
    
    void
    callMulti(void)
    {
    	struct multi_return result = multi();
    	assert(strcmp(result.r0, "multi") == 0);
    	assert(result.r1 == 0);
    	free(result.r0);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 459 bytes
    - Viewed (0)
  5. maven-core/src/test/resources/consumer/simple/pom.xml

      <groupId>org.sonatype.mavenbook.multi</groupId>
      <artifactId>parent</artifactId>
      <version>0.9-${changelist}-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Multi Chapter Parent Project</name>
    
      <!-- Optimized from https://github.com/sonatype/maven-example-en/tree/master/examples/ch-multi -->
      <modules>
        <module>simple-parent</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    					revision:     "default",
    					namespaces:   multicluster.BuildMultiClusterKclientComponent[*corev1.Namespace](multi, kubetypes.Filter{}),
    				}
    
    				stop := test.NewStop(t)
    				multi.Add(constants.DefaultClusterName, client, stop)
    				client.RunAndWait(stop)
    
    				// Split multi-part yaml documents. Input and output will have the same number of parts.
    				inputYAMLs := splitYamlFile(inputFilePath, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    This is achieved by setting a top-level `version` property in the build script:
    
    .build.gradle.kts
    [source.multi-language-sample,kotlin]
    ----
    version = "0.1.0"
    ----
    
    .build.gradle
    [source.multi-language-sample,groovy]
    ----
    version = '0.1.0'
    ----
    
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Code that currently registers features with the main source set, like so:
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        id("java-library")
    }
    
    java {
        registerFeature("feature") {
            usingSourceSet(sourceSets["main"])
        }
    }
    ----
    ======
    [.multi-language-sample]
    ======
    .build.gradle
    [source,groovy]
    ----
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    The project has the following structure:
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    gradle-project
    ├── app
    │   ├── build.gradle.kts    // empty file - no build logic
    │   └── ...                 // some java code
    ├── settings.gradle.kts     // includes app subproject
    ├── gradle
    │   └── ...
    ├── gradlew
    └── gradlew.bat
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. pkg/config/mesh/watcher_test.go

    }
    
    func TestMultiWatcherShouldNotifyHandlers(t *testing.T) {
    	watcherShouldNotifyHandlers(t, true)
    }
    
    func watcherShouldNotifyHandlers(t *testing.T, multi bool) {
    	path := newTempFile(t)
    
    	m := mesh.DefaultMeshConfig()
    	writeMessage(t, path, m)
    
    	w := newWatcher(t, path, multi)
    	assert.Equal(t, w.Mesh(), m)
    
    	doneCh := make(chan struct{}, 1)
    
    	var newM *meshconfig.MeshConfig
    	w.AddMeshHandler(func() {
    		newM = w.Mesh()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top