Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for gotPings (0.12 sec)

  1. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    abstract class MyWorkerTask extends DefaultTask {
        @Input
        abstract Property<Boolean> getBooleanFlag()
    
        @Inject
        abstract WorkerExecutor getWorkerExecutor()
    
        @TaskAction
        void doThings() {
            workerExecutor.noIsolation().submit(MyWorkAction) {}
        }
    }
    
    tasks.register("myWorkTask", MyWorkerTask) {}
    // end::worker-executor[]
    
    // tag::file-system[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            buildFile << """
                test {
                  include 'FooTest*'
                  def cls = "FooTest"
                  filter {
                    includeTestsMatching "\${cls}.passOne" //make sure GStrings work
                    includeTestsMatching "\${cls}.passTwo"
                  }
                }
            """
            file("src/test/java/FooTest.java") << """
                ${testFrameworkImports}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

        }
    
    
        /*
         * Groovy manipulates the JVM to let GString extend String.
         * Whenever we have a Set or Map containing Strings, it might also
         * contain GStrings. This breaks deserialization on the client.
         * This method forces GString to String conversion.
         */
        private static String convertGString(CharSequence original) {
            return original.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            failure.assertHasCause("Cannot fingerprint input property 'b': value 'xxx' cannot be serialized.")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "deals gracefully with not serializable contents of GStrings"() {
            buildFile << """
                task foo {
                    inputs.property "a", "hello \${new Foo()}"
                    outputs.file "foo.txt"
                    doLast { file("foo.txt") << "" }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

        }
    
        def "reports build logic reading environment variables with getenv(String) using GString parameters"() {
            // Note that the map returned from System.getenv() doesn't support GStrings as keys, so there is no point in testing it.
            buildFile << '''
                def ci = "ci"
                def value = "value"
                println "CI1 = " + System.getenv("${ci.toUpperCase()}1")
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		// and used as the new base register and the offset field in the instruction
    		// can be set to zero.
    
    		// This same problem can happen with gostrings since the final offset is not
    		// known yet, but could be unaligned after the relocation is resolved.
    		// So gostrings are handled the same way.
    
    		// This allows the MOVDload and MOVWload to be generated in more cases and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais.go

    // See Ge Nong, Sen Zhang, and Wai Hong Chen,
    // "Two Efficient Algorithms for Linear Time Suffix Array Construction",
    // especially section 3 (https://ieeexplore.ieee.org/document/5582081).
    // See also http://zork.net/~st/jottings/sais.html.
    //
    // With optimizations inspired by Yuta Mori's sais-lite
    // (https://sites.google.com/site/yuta256/sais).
    //
    // And with other new optimizations.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. src/fmt/fmt_test.go

    }
    
    type G int
    
    func (g G) GoString() string {
    	return Sprintf("GoString(%d)", int(g))
    }
    
    type S struct {
    	F F // a struct field that Formats
    	G G // a struct field that GoStrings
    }
    
    type SI struct {
    	I any
    }
    
    // P is a type with a String method with pointer receiver for testing %p.
    type P int
    
    var pValue P
    
    func (p *P) String() string {
    	return "String(p)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top