Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,259 for thingo (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryExtensionsIntegrationTest.groovy

            buildFile """
            class Thing {
                String value
                Thing(String value) {
                    this.value = value
                }
            }
    
            class MyExtensible {}
    
            def myExtensible = project.objects.newInstance(MyExtensible)
            assert myExtensible instanceof ExtensionAware
    
            myExtensible.extensions.create("thing", Thing, "bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 13 21:29:11 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/ClosureBackedRuleActionTest.groovy

                assert it.is(thing)
                assert delegate.is(thing)
            }
    
            when:
            action(closure).execute(thing, [])
    
            then:
            called
        }
    
        def "can construct with untyped single arg closure"() {
            given:
            def called = false
            String thing = "1"
            def closure = { subject ->
                called = true
                assert subject.is(thing)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/manually.md

    This is the basic idea. But you will probably want to take care of some additional things, like:
    
    * Security - HTTPS
    * Running on startup
    * Restarts
    * Replication (the number of processes running)
    * Memory
    * Previous steps before starting
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskPropertiesIntegrationTest.groovy

                    }
                }
    
                tasks.create("thing", MyTask) {
                    println("property = \$count")
                }
            """
    
            when:
            fails("thing")
    
            then:
            outputContains("property = task ':thing' property 'count'")
            failure.assertHasCause("Cannot query the value of task ':thing' property 'count' because it has no value available.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

                project.extensions.create('thing', ProjectModel.class)
                thing.prop.disallowUnsafeRead()
    
                task show {
                    def thing = project.thing
                    dependsOn {
                        thing.prop.from("some-file")
                        println("value = " + thing.prop.files)
                        try {
                            thing.prop.from("ignore me")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. test/gcstring.go

    	
    	for i := 0; i < 10000; i++ {
    		s := string(buf)
    		t := &T{ptr: new(*int)}
    		runtime.SetFinalizer(t.ptr, func(**int) { panic("*int freed too early") })
    		Ts = append(Ts, t)
    		things = append(things, s[len(s):])
    	}
    	
    	things = append(things, Ts...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 872 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExternalModuleVariantsIntegrationTest.groovy

            outputContains("test-thing-1.2.thing {artifactType=thing, org.gradle.status=release}")
            outputContains("test-1.2.jar {artifactType=jar, org.gradle.status=release}")
            outputContains("test-1.2.aar {artifactType=aar, org.gradle.status=release}")
            outputContains("test-1.2.thing {artifactType=thing, org.gradle.status=release}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/DynamicPropertyNamer.java

        @Override
        public String determineName(Object thing) {
            Object name;
            try {
                if (thing instanceof Named) {
                    name = ((Named) thing).getName();
                } else if (thing instanceof Map) {
                    name = ((Map) thing).get("name");
                } else if (thing instanceof GroovyObject) {
                    name = ((GroovyObject) thing).getProperty("name");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/linklist3.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Cool things:
    
      - Foo
      - [Go]
      - Bar
    
    [Go]: https://go.dev/
    -- text --
    Cool things:
    
      - Foo
      - Go
      - Bar
    
    [Go]: https://go.dev/
    -- markdown --
    Cool things:
    
      - Foo
      - [Go](https://go.dev/)
      - Bar
    
    -- html --
    <p>Cool things:
    <ul>
    <li>Foo
    <li><a href="https://go.dev/">Go</a>
    <li>Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 349 bytes
    - Viewed (0)
  10. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

        private static String join(Collection<?> things, String separator) {
            StringBuilder builder = new StringBuilder();
            boolean first = true;
    
            if (separator == null) {
                separator = "";
            }
    
            for (Object thing : things) {
                if (!first) {
                    builder.append(separator);
                }
                builder.append(thing.toString());
                first = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top