Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,309 for inNode (0.5 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

    println "root: " + doSomethingElse(10)
    """
            file("child1/build.gradle") << """
    println "child: " + doSomething(11)
    println "child: " + doSomethingElse(11)
    """
    
            expect:
            // Invoke twice to exercise script caching
            succeeds()
            outputContains("root: {10}")
            outputContains("root: [10]")
            outputContains("child: {11}")
            outputContains("child: [11]")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. cmd/metacache_gen_test.go

    func TestEncodeDecodemetacache(t *testing.T) {
    	v := metacache{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    
    	m := v.Msgsize()
    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodemetacache Msgsize() is inaccurate")
    	}
    
    	vn := metacache{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    	err = msgp.NewReader(&buf).Skip()
    	if err != nil {
    		t.Error(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/callableReferenceDirectCall.kt

    fun test() {
        val f = String::length
        val s = "hello"
        val g = s::length
        f(s) + g() + String::length.invoke(s) + <expr>s::length</expr>.invoke()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 159 bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

         */
        void writeByte(byte value) throws IOException;
    
        /**
         * Writes the given raw bytes to the stream. Does not encode any length information.
         */
        void writeBytes(byte[] bytes) throws IOException;
    
        /**
         * Writes the given raw bytes to the stream. Does not encode any length information.
         */
        void writeBytes(byte[] bytes, int offset, int count) throws IOException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/callableReferenceStaticLHS.kt

    fun test() {
        val f = <expr>String::length</expr>
        val s = "hello"
        val g = s::length</expr>
        f() + g() + String::length.invoke(s) + s::length.invoke()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 165 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/callableReference.kt

    fun test() {
        val f = String::length
        val s = "hello"
        val g = <expr>s::length</expr>
        f(s) + g() + String::length.invoke(s) + s::length.invoke()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 159 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/callableReferenceIndirectCall.kt

    fun test() {
        val f = String::length
        val s = "hello"
        val g = s::length
        f(s) + <expr>g</expr>() + String::length.invoke(s) + s::length.invoke()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 159 bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

        }
    
        /**
         * The character set used to encode JAR metadata like file names.
         * Defaults to UTF-8.
         * You can change this property but it is not recommended as JVMs expect JAR metadata to be encoded using UTF-8
         *
         * @return the character set used to encode JAR metadata like file names
         * @since 2.14
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. pkg/api/testing/copy_test.go

    		t.Errorf("Could not encode a %v: %s", kind, err)
    		return
    	}
    
    	// Refuzz the copy, which should have no effect on the original
    	f.Fuzz(itemCopy)
    
    	postfuzzData := &bytes.Buffer{}
    	if err := legacyscheme.Codecs.LegacyCodec(kind.GroupVersion()).Encode(item, postfuzzData); err != nil {
    		t.Errorf("Could not encode a %v: %s", kind, err)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/callableReferenceStaticLHSLHS.kt

    fun test() {
        val f = <expr>String</expr>::length
        val s = "hello"
        val g = s::length
        f() + g() + String::length.invoke(s) + s::length.invoke()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 158 bytes
    - Viewed (0)
Back to top