Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,375 for dwrite (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/ManualUpToDateOutputOriginIntegrationTest.groovy

                }
                
                def write = tasks.create("write", CustomTask)
            """
    
            when:
            succeeds "write"
    
            then:
            executedAndNotSkipped ":write"
            originBuildInvocationId(":write") == null
    
            when:
            buildFile << """
                write.value = "b"
            """
            succeeds("write")
    
            then:
            skipped(":write")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 10 10:29:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_cache.go

    		}
    	}
    	h.Write(Separator)
    
    	for _, vs := range r.DelegateVirtualServices {
    		h.Write(hashToBytes(vs))
    		h.Write(Separator)
    	}
    	h.Write(Separator)
    
    	for _, mergedDR := range r.DestinationRules {
    		for _, dr := range mergedDR.GetFrom() {
    			h.WriteString(dr.Name)
    			h.Write(Slash)
    			h.WriteString(dr.Namespace)
    			h.Write(Separator)
    		}
    	}
    	h.Write(Separator)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/SnapshotSerializerTest.groovy

            def original = snapshot("x".bytes)
            write(original)
    
            expect:
            original == written
        }
    
        def "serializes string properties"() {
            def original = string("x")
            write(original)
    
            expect:
            original == written
        }
    
        def "serializes number properties"() {
            write(value)
    
            expect:
            value == written
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/runtime/mwbbuf.go

    // license that can be found in the LICENSE file.
    
    // This implements the write barrier buffer. The write barrier itself
    // is gcWriteBarrier and is implemented in assembly.
    //
    // See mbarrier.go for algorithmic details on the write barrier. This
    // file deals only with the buffer.
    //
    // The write barrier has a fast path and a slow path. The fast path
    // simply enqueues to a per-P write barrier buffer. It's written in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                nullableFileSerializer.write(encoder, startParameter.getGradleHomeDir());
                nullableFileSerializer.write(encoder, startParameter.getProjectCacheDir());
                fileListSerializer.write(encoder, startParameter.getIncludedBuilds());
    
                // Other stuff
                NO_NULL_STRING_MAP_SERIALIZER.write(encoder, startParameter.getProjectProperties());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  6. test/writebarrier.go

    func f21a(x *int) {
    	x21 = x   // ERROR "write barrier"
    	y21.x = x // ERROR "write barrier"
    }
    
    func f21b(x *int) {
    	x21 = &z21   // ERROR "write barrier"
    	y21.x = &z21 // ERROR "write barrier"
    }
    
    func f21c(x *int) {
    	y21 = struct{ x *int }{x} // ERROR "write barrier"
    }
    
    func f22(x *int) (y *int) {
    	// pointer write on stack should have no write barrier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 19:46:36 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/dist/testjson_test.go

    			const b1 = 5
    			const b2 = len(in) - 5
    			f.Write([]byte(in[:b1]))
    			f.Write([]byte(in[b1:b2]))
    			f.Write([]byte(in[b2:]))
    		})
    	})
    }
    
    func checkJSONFilter(t *testing.T, in, want string) {
    	t.Helper()
    	checkJSONFilterWith(t, want, func(f *testJSONFilter) {
    		f.Write([]byte(in))
    	})
    }
    
    func checkJSONFilterWith(t *testing.T, want string, write func(*testJSONFilter)) {
    	t.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 20:13:24 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/splice_test.go

    		},
    		{
    			name: "Write/Splice, Reset, Write/Splice",
    			run: func(sb runtime.Splice, buf *bytes.Buffer) {
    				sb.Splice(testBytes0)
    				buf.Write(testBytes0)
    
    				sb.Reset()
    				buf.Reset()
    
    				sb.Splice(testBytes1)
    				buf.Write(testBytes1)
    			},
    		},
    		{
    			name: "Write, Reset, Splice",
    			run: func(sb runtime.Splice, buf *bytes.Buffer) {
    				sb.Write(testBytes0)
    				buf.Write(testBytes0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

        val bytes = binaryData(200)
        data.write("0264".decodeHex()).write(bytes, 0, 100)
        data.write("8064".decodeHex()).write(bytes, 100, 100)
        clientReader.processNextFrame()
        callback.assertBinaryMessage(bytes)
      }
    
      @Test fun twoFrameNotContinuation() {
        val bytes = binaryData(200)
        data.write("0264".decodeHex()).write(bytes, 0, 100)
        data.write("8264".decodeHex()).write(bytes, 100, 100)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/BuildCacheOutputOriginIntegrationTest.groovy

            then:
            skipped ":write"
            with(origin(":write")) {
                buildInvocationId == thirdBuildId
                buildCacheKey == thirdBuildCacheKey
            }
    
            when:
            succeeds  "write"
    
            then:
            skipped ":write"
            originBuildInvocationId(":write") == thirdBuildId
    
            when:
            succeeds  "write"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 14:10:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top