Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for caseSensitive (0.19 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    org/codehaus/plexus/util/interpolation/EnvarBasedValueSourc.class package org.codehaus.plexus.util.interpolation; public synchronized class EnvarBasedValueSourc implements ValueSource { private java.util.Properties envars; private final boolean caseSensitive; public void EnvarBasedValueSourc() throws java.io.IOException; public void EnvarBasedValueSourc(boolean) throws java.io.IOException; public Object getValue(String); } org/codehaus/plexus/util/interpolation/MapBasedValueSource.class package or...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            1 * selectedChild.store(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE, snapshot, diffListener) >> updatedChild
        }
    
        def "querying the snapshot for non-existing child #vfsSpec.searchedPath finds nothings (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.getSnapshot(searchedPath, CASE_SENSITIVE)
            then:
            !resultRoot.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseSensitiveVfsRelativePathTest.groovy

    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    import static org.gradle.internal.snapshot.PathUtil.getPathComparator
    
    class CaseSensitiveVfsRelativePathTest extends AbstractCaseVfsRelativePathTest {
    
        def "finds right entry in sorted list with only case differences"() {
            def children = ["bAd", "BaD", "Bad"]
            children.sort(getPathComparator(CASE_SENSITIVE))
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

    import org.gradle.internal.file.FileMetadata.AccessType
    import org.gradle.internal.file.FileType
    import org.gradle.internal.hash.TestHashCodes
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class DirectoryNodeTest extends AbstractFileSystemNodeWithChildrenTest<FileSystemNode, FileSystemLocationSnapshot> {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PartialDirectoryNodeTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot
    
    import org.gradle.internal.file.FileType
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class PartialDirectoryNodeTest extends AbstractIncompleteFileSystemNodeTest<PartialDirectoryNode> {
    
        @Override
        protected PartialDirectoryNode createInitialRootNode(ChildMap<FileSystemNode> children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    org/codehaus/plexus/util/interpolation/EnvarBasedValueSourc.class package org.codehaus.plexus.util.interpolation; public synchronized class EnvarBasedValueSourc implements ValueSource { private java.util.Properties envars; private final boolean caseSensitive; public void EnvarBasedValueSourc() throws java.io.IOException; public void EnvarBasedValueSourc(boolean) throws java.io.IOException; public Object getValue(String); } org/codehaus/plexus/util/interpolation/MapBasedValueSource.class package or...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot
    
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class UnknownFileSystemNodeTest extends AbstractIncompleteFileSystemNodeTest<UnknownFileSystemNode> {
    
        @Override
        protected UnknownFileSystemNode createInitialRootNode(ChildMap<FileSystemNode> children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/testdata/describe/tls_config.json

                      "*"
                    ],
                    "routes": [
                      {
                        "match": {
                          "path": "/productpage",
                          "case_sensitive": true
                        },
                        "route": {
                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

            expect:
            initialRoot.store(childAbsolutePath("some/child"), CASE_SENSITIVE, snapshot, changeListener) == initialRoot
            removedSnapshots.empty
            addedSnapshots.empty
        }
    
        def "invalidate removes the node"() {
            expect:
            initialRoot.invalidate(childAbsolutePath("some/child"), CASE_SENSITIVE, changeListener) == Optional.empty()
            removedSnapshots == [initialRoot]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

            1 * selectedChild.getSnapshot(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE) >> Optional.ofNullable(foundSnapshot)
        }
    
        def getDescendantNodeOfSelectedChild(@Nullable FileSystemNode foundNode) {
            1 * selectedChild.getNode(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE) >> Optional.ofNullable(foundNode)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top