Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,259 for thingo (0.11 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            transformer.addAction(new Action<XmlProvider>() {
                void execute(XmlProvider xml) {
                    xml.asNode().thing[0].@foo = "bar"
                }
            })
            transformer.transform(writer, generator)
    
            then:
            looksLike('<things>\n  <thing foo="bar"/>\n</things>', writer.toString())
        }
    
        private void looksLike(String expected, String actual) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/NonIncrementalProcessorFixture.groovy

            super("Thing")
        }
    
        NonIncrementalProcessorFixture providingNoOriginatingElements() {
            providesNoOriginatingElements = true
            this
        }
    
        String getGeneratorCode() {
            """
    for (Element element : elements) {
        TypeElement typeElement = (TypeElement) element;
        String className = typeElement.getSimpleName().toString() + "Thing";
        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

            buildScript '''
                @Managed
                interface Thing extends Named {
                  void setValue(String value)
                  String getValue()
                }
    
                class Rules extends RuleSource {
                  @Model
                  void mapThings(ModelSet<ModelMap<Thing>> things) {
                    things.create {
                        a(Thing) {
                            value = '1'
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MethodInvocationSerializerTest.groovy

            result.arguments == [1, 2] as Object[]
        }
    
        interface Thing {
            String doStuff(Thing[] things)
        }
    
        def "serializes a method invocation with array type parameters"() {
            def method = Thing.class.getMethod("doStuff", Thing[].class)
            def invocation = new MethodInvocation(method, [[] as Thing[]] as Object[])
    
            when:
            def serialized = serialize(invocation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/NamespaceBuilderTest.groovy

            ""      | ""
            "thing" | "thing"
            "a123"  | "a123"
            "_"     | "_"
            "a.b.c" | "a_b_c"
        }
    
        def "discards invalid identifier characters"() {
            expect:
            NamespaceBuilder.toNamespace(value) == namespace
    
            where:
            value      | namespace
            "123"      | ""
            "1thing"   | "thing"
            "1a 2b 3c" | "a_b_c"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedScalarCollectionsIntegrationTest.groovy

        def "reports problem when managed type declares a #type of subtype of scalar type"() {
            when:
            buildScript """
            class Thing extends File {
                Thing(String s) { super(s) }
            }
    
            @Managed
            interface Container {
                $type<Thing> getItems()
            }
    
            model {
                container(Container)
            }
            """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/base/link.go

    // Avoid potential confusion between import paths and symbols
    // by rejecting these reserved imports for now. Also, people
    // "can do weird things in GOPATH and we'd prefer they didn't
    // do _that_ weird thing" (per rsc). See also #4257.
    var ReservedImports = map[string]bool{
    	"go":   true,
    	"type": true,
    }
    
    var Ctxt *obj.Link
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. architecture/networking/controllers.md

    Often, these handlers are adding something to the queue like `client.AddEventHandler(controllers.ObjectHandler(queue.AddObject))`.
    Construction should NOT actually start running all of these things, do I/O, or block in anyway.
    
    Running the controller actually starts processing things.
    Normally, this just means running the queue.
    All informers created by `kube.Client` are kept track in the client, and started in one go with `RunAndWait` in one centralized call.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            given:
            registry.registerInstance("thing", "value")
            registry.configure(ModelActionRole.Validate) { it.path "thing" type Object node action }
            action.execute(_) >> { MutableModelNode node -> node.addLink("thing.child") { it.descriptor("create thing.child as String").unmanaged("value") } }
    
            when:
            registry.realize("thing")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/concepts.md

    * A particular program while it is **running** on the operating system.
        * This doesn't refer to the file, nor to the code, it refers **specifically** to the thing that is being **executed** and managed by the operating system.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top