Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for 10x10 (0.04 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListenerTest.groovy

            0 * spec.lineInFileLocation(_, _)
            0 * spec.lineInFileLocation(_, _, _)
            1 * spec.lineInFileLocation("SomeFile.java", 1, 1, 10)
            1 * spec.offsetInFileLocation("SomeFile.java", 10, 10)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:58:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ObjectArraysTest.java

      }
    
      public void testNonEmptyToShorter() {
        checkArrayEquals(new String[9], ObjectArrays.newArray(new String[10], 9));
      }
    
      public void testNonEmptyToSameLength() {
        doTestNewArrayEquals(new String[10], 10);
      }
    
      public void testNonEmptyToLonger() {
        checkArrayEquals(
            new String[10], ObjectArrays.newArray(new String[] {"a", "b", "c", "d", "e"}, 10));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. pkg/kubelet/lifecycle/handlers.go

    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/util/format"
    	httpprobe "k8s.io/kubernetes/pkg/probe/http"
    	"k8s.io/kubernetes/pkg/security/apparmor"
    )
    
    const (
    	maxRespBodyLength = 10 * 1 << 10 // 10KB
    )
    
    type handlerRunner struct {
    	httpDoer         kubetypes.HTTPDoer
    	commandRunner    kubecontainer.CommandRunner
    	containerManager podStatusProvider
    	eventRecorder    record.EventRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/compress/gzip/gzip.go

    		z.buf = [10]byte{0: gzipID1, 1: gzipID2, 2: gzipDeflate}
    		if z.Extra != nil {
    			z.buf[3] |= 0x04
    		}
    		if z.Name != "" {
    			z.buf[3] |= 0x08
    		}
    		if z.Comment != "" {
    			z.buf[3] |= 0x10
    		}
    		if z.ModTime.After(time.Unix(0, 0)) {
    			// Section 2.3.1, the zero value for MTIME means that the
    			// modified time is not set.
    			le.PutUint32(z.buf[4:8], uint32(z.ModTime.Unix()))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/net/resolverdialfunc_test.go

    	return func(ctx context.Context, network, address string) (Conn, error) {
    		a := &resolverFuncConn{
    			h:       h,
    			network: network,
    			address: address,
    			ttl:     10, // 10 second default if unset
    		}
    		if h.StartDial != nil {
    			if err := h.StartDial(network, address); err != nil {
    				return nil, err
    			}
    		}
    		return a, nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/sync/pool_test.go

    				atomic.AddUint32(&fin, 1)
    			})
    			p.Put(v)
    		}
    		if drain {
    			for i := 0; i < N; i++ {
    				p.Get()
    			}
    		}
    		for i := 0; i < 5; i++ {
    			runtime.GC()
    			time.Sleep(time.Duration(i*100+10) * time.Millisecond)
    			// 1 pointer can remain on stack or elsewhere
    			if fin1 = atomic.LoadUint32(&fin); fin1 >= N-1 {
    				continue loop
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.pb.go

    	_ = l
    	i -= len(m.StrVal)
    	copy(dAtA[i:], m.StrVal)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.StrVal)))
    	i--
    	dAtA[i] = 0x1a
    	i = encodeVarintGenerated(dAtA, i, uint64(m.IntVal))
    	i--
    	dAtA[i] = 0x10
    	i = encodeVarintGenerated(dAtA, i, uint64(m.Type))
    	i--
    	dAtA[i] = 0x8
    	return len(dAtA) - i, nil
    }
    
    func encodeVarintGenerated(dAtA []byte, offset int, v uint64) int {
    	offset -= sovGenerated(v)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_arm.s

    	RET
    
    // MD5 constants table
    
    	// Round 1
    	DATA	·table+0x00(SB)/4, $0xd76aa478
    	DATA	·table+0x04(SB)/4, $0xe8c7b756
    	DATA	·table+0x08(SB)/4, $0x242070db
    	DATA	·table+0x0c(SB)/4, $0xc1bdceee
    	DATA	·table+0x10(SB)/4, $0xf57c0faf
    	DATA	·table+0x14(SB)/4, $0x4787c62a
    	DATA	·table+0x18(SB)/4, $0xa8304613
    	DATA	·table+0x1c(SB)/4, $0xfd469501
    	DATA	·table+0x20(SB)/4, $0x698098d8
    	DATA	·table+0x24(SB)/4, $0x8b44f7af
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    #define TMP  R15
    
    #define CONSTBASE  R16
    #define BLOCKS R17
    
    // for VPERMXOR
    #define MASK  R18
    
    DATA consts<>+0x00(SB)/8, $0x3320646e61707865
    DATA consts<>+0x08(SB)/8, $0x6b20657479622d32
    DATA consts<>+0x10(SB)/8, $0x0000000000000001
    DATA consts<>+0x18(SB)/8, $0x0000000000000000
    DATA consts<>+0x20(SB)/8, $0x0000000000000004
    DATA consts<>+0x28(SB)/8, $0x0000000000000000
    DATA consts<>+0x30(SB)/8, $0x0a0b08090e0f0c0d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top