Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for gretty (0.11 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // Update by running `./gradlew updateKotlinVersions`
            static kotlin = Versions.of(*KOTLIN_VERSIONS.latests)
    
            // https://plugins.gradle.org/plugin/org.gretty
            static gretty = [
                [version: "3.1.2", servletContainer: "jetty9.4", javaMinVersion: JavaVersion.VERSION_1_8, javaMaxVersion: JavaVersion.VERSION_20],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    There is no core support for running your web application directly from the build, but we do recommend that you try the https://plugins.gradle.org/plugin/org.gretty[Gretty] community plugin, which provides an embedded Servlet container.
    
    [[sec:building_java_enterprise_apps]]
    == Building Java EE applications
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

            """
    
            when:
            succeeds('greet', 'greet2')
    
            then:
            outputContains 'Hello from first plugin!'
            outputContains 'Hello from second plugin!'
        }
    
        def "emits deprecation warning when #useCase from plugins block"() {
    
            String taskName = 'greet'
            String message = 'Hello from plugin!'
            String pluginId = 'com.acme.greeter'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // EnablePretty enables including a pretty serializer along with the non-pretty one
    func EnablePretty(options *CodecFactoryOptions) {
    	options.Pretty = true
    }
    
    // DisablePretty disables including a pretty serializer along with the non-pretty one
    func DisablePretty(options *CodecFactoryOptions) {
    	options.Pretty = false
    }
    
    // EnableStrict enables configuring all serializers in strict mode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. src/runtime/runtime-gdb.py

    # license that can be found in the LICENSE file.
    
    """GDB Pretty printers and convenience functions for Go's runtime structures.
    
    This script is loaded by GDB when it finds a .debug_gdb_scripts
    section in the compiled binary. The [68]l linkers emit this with a
    path to this file based on the path to the runtime package.
    """
    
    # Known issues:
    #    - pretty printing only works for the 'native' strings. E.g. 'type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

        }
    
        @Test
        @DisplayName("pretty pretty_test")
        public void ugly_test() {
        }
    
        @ParameterizedTest
        @CsvSource({"10, 'first'", "20, 'second'"})
        public void parametrized_test(int value, String name) {
            System.out.println(name + " " + value);
        }
    
        @ParameterizedTest
        @DisplayName("pretty parametrized test")
        @CsvSource({"30, 'third'", "40, 'fourth'"})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    		t.Errorf("%s", dump.Pretty(original))
    		t.Errorf("%s", dump.Pretty(object))
    		return
    	}
    
    	// encode (serialize) the deep copy using the provided codec
    	data, err := runtime.Encode(codec, object)
    	if err != nil {
    		if runtime.IsNotRegisteredError(err) {
    			t.Logf("%v: not registered: %v (%s)", name, err, dump.Pretty(object))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/dump_test.go

    		t.Fatal(dump.Pretty(actualNodes))
    	}
    	for i := range expectedNodes {
    		currExpected := expectedNodes[i]
    		currActual := actualNodes[i]
    		if currExpected.uid != currActual.uid {
    			t.Errorf("expected %v, got %v", dump.Pretty(currExpected), dump.Pretty(currActual))
    		}
    	}
    	if len(expectedEdges) != len(actualEdges) {
    		t.Fatal(dump.Pretty(actualEdges))
    	}
    	for i := range expectedEdges {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    // Deprecated: use NewSerializerWithOptions instead.
    func NewSerializer(meta MetaFactory, creater runtime.ObjectCreater, typer runtime.ObjectTyper, pretty bool) *Serializer {
    	return NewSerializerWithOptions(meta, creater, typer, SerializerOptions{false, pretty, false})
    }
    
    // NewYAMLSerializer creates a YAML serializer that handles encoding versioned objects into the proper YAML form. If typer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    	s.AddUnversionedTypes(externalGV, &metav1.Status{})
    
    	utilruntime.Must(runtimetesting.RegisterConversions(s))
    
    	cf := newCodecFactory(s, newSerializersForScheme(s, testMetaFactory{}, CodecFactoryOptions{Pretty: true, Strict: true}))
    	codec := cf.LegacyCodec(schema.GroupVersion{Version: "v1"})
    	return s, codec
    }
    
    var semantic = conversion.EqualitiesOrDie(
    	func(a, b runtimetesting.MyWeirdCustomEmbeddedVersionKindField) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top