Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 422 for strref (0.1 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InPlaceClasspathBuilderTest.groovy

            def file = tmpDir.file("thing.zip")
    
            when:
            builder.jar(file) {
                it.put("store.txt", "bytes".bytes, ClasspathEntryVisitor.Entry.CompressionMethod.STORED)
                it.put("undefined.txt", "bytes".bytes, ClasspathEntryVisitor.Entry.CompressionMethod.UNDEFINED)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    # TYPE apiserver_storage_objects gauge
    apiserver_storage_objects{resource="foo"} 10
    `,
    		},
    		{
    			desc:     "failed fetch",
    			resource: "bar",
    			count:    -1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    <2> Compare the reference to an object of user-defined class stored in the task field and the reference captured in the `doLast` action.
    <3> Compare the reference to `ArrayList` instance stored in the task field and the reference captured in the `doLast` action.
    <4> Check the equality of stored and captured lists.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/LocalBuildCacheServiceHandle.java

        boolean canStore();
    
        /**
         * Stores the file to the local cache.
         *
         * If canStore() returns false, then this method will do nothing and will return false.
         *
         * Returns true if store was completed.
         */
        boolean maybeStore(BuildCacheKey key, File file);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 16:23:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue44739.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 44739: cmd/compile: incorrect offset in MOVD
    // load/store on ppc64/ppc64le causes assembler error.
    
    // Test other 8 byte loads and stores where the
    // compile time offset is not aligned to 8, as
    // well as cases where the offset is not known
    // until link time (e.g. gostrings).
    
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 19:33:23 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/encoding/base64/base64_test.go

    	conv func(string) string // Reference string converter
    }
    
    var encodingTests = []encodingTest{
    	{StdEncoding, stdRef},
    	{URLEncoding, urlRef},
    	{RawStdEncoding, rawRef},
    	{RawURLEncoding, rawURLRef},
    	{funnyEncoding, funnyRef},
    	{StdEncoding.Strict(), stdRef},
    	{URLEncoding.Strict(), urlRef},
    	{RawStdEncoding.Strict(), rawRef},
    	{RawURLEncoding.Strict(), rawURLRef},
    	{funnyEncoding.Strict(), funnyRef},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. src/internal/bytealg/equal_mipsx.s

    	MOVB	R1, ret+12(FP)
    	RET
    
    // memequal_varlen(a, b unsafe.Pointer) bool
    TEXT runtime·memequal_varlen(SB),NOSPLIT,$0-9
    	MOVW	a+0(FP), R1
    	MOVW	b+4(FP), R2
    	BEQ	R1, R2, eq
    	MOVW	4(REGCTXT), R3	// compiler stores size at offset 4 in the closure
    	ADDU	R1, R3, R4
    loop:
    	BNE	R1, R4, test
    	MOVW	$1, R1
    	MOVB	R1, ret+8(FP)
    	RET
    test:
    	MOVBU	(R1), R6
    	ADDU	$1, R1
    	MOVBU	(R2), R7
    	ADDU	$1, R2
    	BEQ	R6, R7, loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20/xor.go

    func addXor(dst, src []byte, a, b uint32) {
    	_, _ = src[3], dst[3] // bounds check elimination hint
    	if unaligned {
    		// The compiler should optimize this code into
    		// 32-bit unaligned little endian loads and stores.
    		// TODO: delete once the compiler does a reliably
    		// good job with the generic code below.
    		// See issue #25111 for more details.
    		v := uint32(src[0])
    		v |= uint32(src[1]) << 8
    		v |= uint32(src[2]) << 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 22:52:07 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/low_bit_utils.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_UTILS_LOW_BIT_UTILS_H_
    
    #include <cstdint>
    #include <vector>
    
    namespace tflite {
    // Assumes that `src_tensor` is a buffer where each element is a 4-bit value
    // stored in 8-bit.
    // Returns a new buffer that is packed densely with 2 4-bit values in a byte.
    // The packing format is low-bits-first, i.e. the lower nibble of a byte is
    // filled first, followed by the upper nibble.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 12 20:13:51 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/discovery.go

    	InboundUpdates *atomic.Int64
    	// CommittedUpdates describes the number of configuration updates the discovery server has
    	// received, process, and stored in the push context. If this number is less than InboundUpdates,
    	// there are updates we have not yet processed.
    	// Note: This does not mean that all proxies have received these configurations; it is strictly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top