Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,030 for multis (0.11 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/tableconvertor/tableconvertor_test.go

    					{Name: "single2", Type: "string"},
    					{Name: "multi", Type: "string"},
    				},
    				additionalColumns: []columnPrinter{
    					newJSONPath("valueOnly", "{.spec.servers[0].hosts[0]}"),
    					newJSONPath("single1", "{.spec.servers[0].hosts}"),
    					newJSONPath("single2", "{.spec.servers[1].hosts}"),
    					newJSONPath("multi", "{.spec.servers[*].hosts}"),
    				},
    			},
    			args: args{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

        private static final byte[] INSTRUMENTED_CLASS = new byte[]{2}
        private static final byte[] INSTRUMENTED_VERSIONED_CLASS = new byte[]{20}
    
        def "replaces original class with transformed in non-multi-release JAR"() {
            given:
            def original = jar(testDir.file("original.jar")) {
                manifest {}
    
                entry("Foo.class", ORIGINAL_CLASS)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

                    // If the original JAR is not multi-release, we don't need the manifest in the transformed JAR at all.
                    return;
                }
                isMultiReleaseJar = true;
    
                // We want the transformed JAR to also be a proper multi-release JAR.
                // To do so it must have the "Multi-Release: true" attribute.
                // "Manifest-Version" attribute is also required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 135 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    This sample shows how build logic in a multi-project build can be organized into reusable plugins.
    
    == Use case
    
    As an example, let's say a project with three subprojects produces two public Java libraries that use the third subproject as an internal shared library.
    This is the project structure:
    
    ====
    [.multi-language-sample]
    =====
    .Project structure
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/testdata/testprog/crash.go

    	panic("important multi-line\nstringer message")
    }
    
    func StringerPanic() {
    	panic(exampleStringer{})
    }
    
    type examplePanicStringer struct{}
    
    func (s examplePanicStringer) String() string {
    	panic(exampleStringer{})
    }
    
    func DoubleStringerPanic() {
    	panic(examplePanicStringer{})
    }
    
    func StringPanic() {
    	panic("important multi-line\nstring message")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/structuring_software_products_details.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[tweaking_structure]]
    = Multi-project Build Considerations and Optimizations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 824 bytes
    - Viewed (0)
Back to top