Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for 012345678 (0.19 sec)

  1. pkg/kubelet/kuberuntime/security_context_others_test.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestVerifyRunAsNonRoot(t *testing.T) {
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 10:06:54 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/reflectdata/alg_test.go

    		_ = a == c
    	}
    }
    
    const size = 16
    
    type T1 struct {
    	a [size]byte
    }
    
    func BenchmarkEqStruct(b *testing.B) {
    	x, y := T1{}, T1{}
    	x.a = [size]byte{1, 2, 3, 4, 5, 6, 7, 8}
    	y.a = [size]byte{2, 3, 4, 5, 6, 7, 8, 9}
    
    	for i := 0; i < b.N; i++ {
    		f := x == y
    		if f {
    			println("hello")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/html/template/html_test.go

    )
    
    func TestHTMLNospaceEscaper(t *testing.T) {
    	input := ("\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f" +
    		"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" +
    		` !"#$%&'()*+,-./` +
    		`0123456789:;<=>?` +
    		`@ABCDEFGHIJKLMNO` +
    		`PQRSTUVWXYZ[\]^_` +
    		"`abcdefghijklmno" +
    		"pqrstuvwxyz{|}~\x7f" +
    		"\u00A0\u0100\u2028\u2029\ufeff\ufdec\U0001D11E" +
    		"erroneous\x960") // keep at the end
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 19 22:45:50 UTC 2015
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/Hexdump.java

     */
    
    package jcifs.util;
    
    
    /**
     */
    
    public class Hexdump {
    
        /**
         * 
         */
        public static final char[] HEX_DIGITS = {
            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
        };
    
    
        /**
         * This is an alternative to the <code>java.lang.Integer.toHexString</code>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  5. src/internal/fuzz/mutators_byteslice_test.go

    			input:    []byte{1, 2, 3, 4},
    			expected: []byte{2, 2, 3, 4},
    		},
    		{
    			name:     "byteSliceArithmeticUint64",
    			mutator:  byteSliceArithmeticUint64,
    			input:    []byte{1, 2, 3, 4, 5, 6, 7, 8},
    			expected: []byte{2, 2, 3, 4, 5, 6, 7, 8},
    		},
    		{
    			name:     "byteSliceOverwriteInterestingUint8",
    			mutator:  byteSliceOverwriteInterestingUint8,
    			input:    []byte{1, 2, 3, 4},
    			expected: []byte{255, 2, 3, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/fold_broadcast.mlir

      // CHECK-DAG: %[[RES:.*]] = mhlo.constant dense<{{\[\[\[\[}}1, 4, 9, 16], [5, 12, 21, 32]]]]> : tensor<1x1x2x4xi32>
      %cst0 = mhlo.constant dense<[1, 2, 3, 4]> : tensor<4xi32>
      %cst1 = mhlo.constant dense<[[[[1, 2, 3, 4], [5, 6, 7, 8]]]]> : tensor<1x1x2x4xi32>
      %0 = "mhlo.broadcast_in_dim"(%cst0) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<4xi32>) -> tensor<1x1x2x4xi32>
      %1 = mhlo.multiply %0, %cst1 : tensor<1x1x2x4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/UUID.java

                }
                count++;
            }
    
            return value;
        }
        static final char[] HEXCHARS = {
            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
        };
        public static String bin_to_hex(int value, int length) {
            char[] arr = new char[length];
            int ai = arr.length;
            while (ai-- > 0) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

        }
        def fileAccessTracker = Mock(FileAccessTracker)
        def cache = new DirectoryBuildCache(persistentCache, fileAccessTracker, ".failed")
        def key = TestHashCodes.hashCodeFrom(12345678)
        def hashCode = key.toString()
    
        def "does not store partial result"() {
            when:
            cache.store(key) { output ->
                // Check that partial result file is created inside the cache directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/UUID.java

                }
                count++;
            }
    
            return value;
        }
    
        static final char[] HEXCHARS = {
            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
        };
    
    
        private static String bin_to_hex ( int value, int length ) {
            char[] arr = new char[length];
            int ai = arr.length;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/io/CopyUtilTest.java

    import java.net.URL;
    
    import org.codelibs.core.net.URLUtil;
    import org.junit.Test;
    
    /**
     * @author koichik
     */
    public class CopyUtilTest {
    
        static byte[] srcBytes = new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
    
        static String srcString = "ABCDEFGHIJKLMN";
    
        static String urlString = "あいうえお";
    
        InputStream is = new ByteArrayInputStream(srcBytes);
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top