Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,261 for multis (0.15 sec)

  1. src/go/printer/testdata/expressions.raw

    		{1},
    		[]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.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/pattern_test.go

    		return segment{s: name, wild: true}
    	}
    
    	multi := func(name string) segment {
    		s := wild(name)
    		s.multi = true
    		return s
    	}
    
    	for _, test := range []struct {
    		in   string
    		want pattern
    	}{
    		{"/", pattern{segments: []segment{multi("")}}},
    		{"/a", pattern{segments: []segment{lit("a")}}},
    		{
    			"/a/",
    			pattern{segments: []segment{lit("a"), multi("")}},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/consumer/simple/simple-parent/simple-webapp/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.sonatype.mavenbook.multi</groupId>
        <artifactId>simple-parent</artifactId>
      </parent>
    
      <artifactId>simple-webapp</artifactId>
      <name>Multi Chapter Simple Web Application Project</name>
      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-weather</artifactId>
        </dependency>
      </dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

            hasProject(gradleProjects, rootSingle, ':', 'A')
    
            where:
            modelType << buildScopedModels
        }
    
        def "ProjectConnection provides all GradleProjects for root of multi-project build"() {
            when:
            def gradleProjects = getGradleProjectsWithProjectConnectionUsingBuildModel(rootMulti, modelType)
    
            then:
            gradleProjects.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top