Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,198 for a$b (0.08 sec)

  1. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

            where:
            elements << [["a"], ["a", "b"]]
        }
    
        def "has a nice toString method"() {
            expect:
            PersistentList.of().toString() == "Nil"
            PersistentList.of("a").toString() == "a"
            PersistentList.of("a", "b").toString() == "a : b"
            PersistentList.of("a", "b", "c").toString() == "a : b : c"
            PersistentList.of("a", "b", "c", "d").toString() == "a : b : c : d"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3RegionalResourceTest.groovy

            new URI("s3://somebucket.au.s3.eu-central-1.amazonaws.com/a/b/file.txt")      | Optional.of(getRegion(Regions.EU_CENTRAL_1))                        | 'somebucket.au' | 'a/b/file.txt'
            new URI("s3://somebucket.au.s3-eu-central-1.amazonaws.com/a/b/file.txt")      | Optional.of(getRegion(Regions.EU_CENTRAL_1))                        | 'somebucket.au' | 'a/b/file.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. cmd/testdata/xl-many-parts.meta

    ����������	�
    L4:���
    ������������������� �!�"�#�$�%�&�'�(�)�*�+�,�-�.�/�0�1�2�3�4�5�6�7�8�9�:�;�<�=�>�?�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 02 21:40:38 UTC 2023
    - 808.8K bytes
    - Viewed (0)
  4. src/net/http/routing_tree_test.go

    	}
    
    	test(getTestTree(), []testCase{
    		{"GET", "", "/a", "/a", nil},
    		{"Get", "", "/b", "", nil},
    		{"Get", "", "/a/b", "/a/b", nil},
    		{"Get", "", "/a/c", "/a/{x}", []string{"c"}},
    		{"Get", "", "/a/b/", "/a/b/{$}", nil},
    		{"Get", "", "/a/b/c", "/a/b/{y}", []string{"c"}},
    		{"Get", "", "/a/b/c/d", "/a/b/{x...}", []string{"c/d"}},
    		{"Get", "", "/g/h/i", "/g/h/i", nil},
    		{"Get", "", "/g/h/j", "/g/{x}/j", []string{"h"}},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/fp_test.go

    	return ret
    }
    
    //go:noinline
    func add64_ssa(a, b float64) float64 {
    	return a + b
    }
    
    //go:noinline
    func mul64_ssa(a, b float64) float64 {
    	return a * b
    }
    
    //go:noinline
    func sub64_ssa(a, b float64) float64 {
    	return a - b
    }
    
    //go:noinline
    func div64_ssa(a, b float64) float64 {
    	return a / b
    }
    
    //go:noinline
    func neg64_ssa(a, b float64) float64 {
    	return -a + -1*b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            toRoots(files("a", "b", "c")) == files("a", "b", "c")
            toRoots(files("a/a", "a/a/a", "a/b/a")) == files("a/a", "a/b/a")
            toRoots(files("a/a/a", "a/a", "a/b/a")) == files("a/a", "a/b/a")
            toRoots(files("a/a", "a/a-1", "a/a/a")) == files("a/a", "a/a-1")
            toRoots(files("a/a", "a/a/a", "b/a/a")) == files("a/a", "b/a/a")
            toRoots(files("a/a/a/a/a/a/a/a/a", "a/b")) == files("a/a/a/a/a/a/a/a/a", "a/b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

      }
    
      public void testSumEmptyNonempty() {
        Multiset<String> ms1 = HashMultiset.create();
        Multiset<String> ms2 = HashMultiset.create(Arrays.asList("a", "b", "a"));
        assertThat(Multisets.sum(ms1, ms2)).containsExactly("a", "b", "a");
      }
    
      public void testSumNonemptyEmpty() {
        Multiset<String> ms1 = HashMultiset.create(Arrays.asList("a", "b", "a"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/internal/diff/testdata/triv.txt

    Anchored diff gives up on finding anything,
    since there are no unique lines.
    
    -- old --
    a
    b
    c
    a
    b
    b
    a
    -- new --
    c
    a
    b
    a
    b
    c
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -1,7 +1,6 @@
    -a
    -b
    -c
    -a
    -b
    -b
    -a
    +c
    +a
    +b
    +a
    +b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 356 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                }
            """
            resolve.expectDefaultConfiguration("compile")
            resolve.prepare()
        }
    
        def "artifact file may have no extension"() {
            createDirs("a", "b")
            settingsFile << "include 'a', 'b'"
            buildFile << """
                project(':a') {
                    artifacts {
                        compile file("foo")
                        compile file("foo.txt")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/arith_test.go

    	return a - b>>3
    }
    
    //go:noinline
    func rsbshiftRL_ssa(a, b uint32) uint32 {
    	return a>>3 - b
    }
    
    //go:noinline
    func andshiftRL_ssa(a, b uint32) uint32 {
    	return a & (b >> 3)
    }
    
    //go:noinline
    func orshiftRL_ssa(a, b uint32) uint32 {
    	return a | b>>3
    }
    
    //go:noinline
    func xorshiftRL_ssa(a, b uint32) uint32 {
    	return a ^ b>>3
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
Back to top