Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for abcdeff (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

       <configuration>
          <verify-metadata>true</verify-metadata>
          <ignored-keys>
             <ignored-key id="ABcdEF"/>
             <ignored-key id="012345" reason="nope"/>
          </ignored-keys>
       </configuration>
    </verification-metadata>
    """
            then:
            verifier.configuration.ignoredKeys == [key("ABCDEF"), key("012345", "nope")] as Set
        }
    
        def "can parse #expectedResult keyring format"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/CharStreamsTest.java

      }
    
      public void testSkipFully_EOF() throws IOException {
        Reader reader = new StringReader("abcde");
        assertThrows(EOFException.class, () -> CharStreams.skipFully(reader, 6));
      }
    
      public void testSkipFully() throws IOException {
        String testString = "abcdef";
        Reader reader = new StringReader(testString);
    
        assertEquals(testString.charAt(0), reader.read());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/CharStreamsTest.java

      }
    
      public void testSkipFully_EOF() throws IOException {
        Reader reader = new StringReader("abcde");
        assertThrows(EOFException.class, () -> CharStreams.skipFully(reader, 6));
      }
    
      public void testSkipFully() throws IOException {
        String testString = "abcdef";
        Reader reader = new StringReader(testString);
    
        assertEquals(testString.charAt(0), reader.read());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/common_test.go

    		},
    		{
    			name: "JoinConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: JoinConfiguration
    			discovery:
    			  bootstrapToken:
    			    token: abcdef.0123456789abcdef
    			    apiServerEndpoint: kube-apiserver:6443
    			    unsafeSkipCAVerification: true
    			`, gv)),
    			expectedKinds: []string{
    				constants.JoinConfigurationKind,
    			},
    			expectErr: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/encoding/csv/writer_test.go

    	{Input: [][]string{{"abc\ndef"}}, Output: "\"abc\ndef\"\n"},
    	{Input: [][]string{{"abc\ndef"}}, Output: "\"abc\r\ndef\"\r\n", UseCRLF: true},
    	{Input: [][]string{{"abc\rdef"}}, Output: "\"abcdef\"\r\n", UseCRLF: true},
    	{Input: [][]string{{"abc\rdef"}}, Output: "\"abc\rdef\"\n", UseCRLF: false},
    	{Input: [][]string{{""}}, Output: "\n"},
    	{Input: [][]string{{"", ""}}, Output: ",\n"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/init_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    var testInitConfig = fmt.Sprintf(`---
    apiVersion: %s
    kind: InitConfiguration
    localAPIEndpoint:
      advertiseAddress: "1.2.3.4"
    bootstrapTokens:
    - token: "abcdef.0123456789abcdef"
    nodeRegistration:
      criSocket: %s
      name: someName
      ignorePreflightErrors:
        - c
        - d
    ---
    apiVersion: %[1]s
    kind: ClusterConfiguration
    controlPlaneEndpoint: "3.4.5.6"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/test/cmd/join_test.go

    	kubeadmPath := getKubeadmPath()
    	var initTest = []struct {
    		name     string
    		args     string
    		expected bool
    	}{
    		{"discovery-token and discovery-file can't both be set", "--discovery-token=abcdef.1234567890123456 --discovery-file=file:///tmp/foo.bar", false}, // DiscoveryToken, DiscoveryFile can't both be set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 21:47:16 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  8. src/archive/tar/writer_test.go

    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    			testRemaining{8, 5},
    			testWrite{"ab\x00\x00\x00cde", 8, nil},
    			testWrite{"a", 0, ErrWriteTooLong},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  9. pkg/model/proxy_test.go

    		{in: `"a,b,c"`, expect: []string{"a", "b", "c"}},
    		{in: `"\"a,b,c"`, expect: []string{`"a`, "b", "c"}},
    		{in: `"a"`, expect: []string{"a"}},
    		{in: `""`, expect: []string{}},
    		{in: `"123,@#$#,abcdef"`, expect: []string{"123", "@#$#", "abcdef"}},
    	}
    	for _, tt := range cases {
    		t.Run(tt.in, func(t *testing.T) {
    			var out model.StringList
    			if err := json.Unmarshal([]byte(tt.in), &out); err != nil {
    				t.Fatal(err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/crypto/sha512/sha512_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top