Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,261 for multis (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    image::structuring-builds-2.png[]
    
    This is a common use case for multi-project builds.
    Gradle offers <<declaring_dependencies.adoc#sub:project_dependencies,project dependencies>> for this.
    
    [[sec:project_jar_dependencies]]
    == Depending on another project
    
    Let's explore a theoretical multi-project build with the following layout:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    .
    ├── api
    │   ├── src
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  3. releasenotes/notes/35884.yaml

    releaseNotes:
      - |
        **Updated** `WorkloadEntry` resources will be read across clusters and no longer need to be manually mirrored to other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 03 22:48:19 UTC 2021
    - 335 bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.input

    		[]int{1, 2},
    		[]int{1, 2, 3},
    	}
    	_ = [][]int {
    		{1},
    		{1, 2},
    		{1, 2, 3},
    	}
    	_ = [][]int {{1}, {1, 2}, {1, 2, 3}}
    }
    
    
    // various multi-line expressions
    func _() {
    	// do not add extra indentation to multi-line string lists
    	_ = "foo" + "bar"
    	_ = "foo" +
    	"bar" +
    	"bah"
    	_ = []string {
    		"abc" +
    		"def",
    		"foo" +
    		"bar",
    	}
    }
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. test/ken/mfunc.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test simple multi-argument multi-valued function.
    
    package main
    
    func
    main() {
    	var x,y int;
    
    	x,y = simple(10,20,30);
    	if x+y != 65 { panic(x+y); }
    }
    
    func
    simple(ia,ib,ic int) (oa,ob int) {
    	return ia+5, ib+ic;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 386 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top