Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for some_path (0.2 sec)

  1. pkg/test/framework/suite_test.go

    			expected: "some_path",
    		},
    		{
    			caller:   "/home/me/go/src/istio.io/istio.io/some/path/mytest.go",
    			expected: "some_path",
    		},
    		{
    			caller:   "/home/me/go/src/istio.io/istio/tests/integration/some/path/mytest.go",
    			expected: "some_path",
    		},
    		{
    			caller:   "/work/some/path/mytest.go",
    			expected: "some_path",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/DefaultFileChangeTest.groovy

            fileChange.message == "test file somePath ${message}."
    
            where:
            fileChange                                                              | message
            DefaultFileChange.removed("somePath", "test", FileType.RegularFile, "") | "has been removed"
            DefaultFileChange.removed("somePath", "test", FileType.Directory, "")   | "has been removed"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/PathAssemblerTest.java

        @Before
        public void setup() {
            configuration.setDistributionBase(PathAssembler.GRADLE_USER_HOME_STRING);
            configuration.setDistributionPath("somePath");
            configuration.setZipBase(PathAssembler.GRADLE_USER_HOME_STRING);
            configuration.setZipPath("somePath");
        }
    
        @Test
        public void distributionDirWithGradleUserHomeBase() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            addedNodes == childrenWithSelectedChildRemoved().stream().map(ChildMap.Entry::getValue).toList()
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << onlyDirectChildren(SAME_PATH)
        }
    
        def "invalidate descendant #vfsSpec.searchedPath of child #vfsSpec.selectedChildPath creates a partial directory node with the invalidated child (#vfsSpec)"() {
            setupTest(vfsSpec)
    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/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            _ * taskDescriptor.getId() >> ":someTask"
            _ * taskDescriptor.getName() >> 'some task'
            _ * taskDescriptor.getDisplayName() >> 'some task in human readable form'
            _ * taskDescriptor.getTaskPath() >> ':some:path'
            _ * taskDescriptor.getParentId() >> null
    
            def startEvent = Mock(InternalOperationStartedProgressEvent)
            _ * startEvent.getEventTime() >> 999
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/OutputTest.groovy

    package org.gradle.plugins.ide.eclipse.model
    
    import groovy.xml.XmlParser
    import spock.lang.Specification
    
    
    class OutputTest extends Specification {
        final static String XML_TEXT = '<classpathentry kind="output" path="somePath"/>'
    
        def canReadFromXml() {
            when:
            Output output = new Output(new XmlParser().parseText(XML_TEXT))
    
            then:
            output == createOutput()
        }
    
        def canWriteToXml() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            1 * snapshot.asFileSystemNode() >> newChild
            _ * newChild.snapshot >> snapshot
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << SAME_PATH
        }
    
        def "storing a metadata snapshot with same path #vfsSpec.searchedPath does not replace a complete snapshot (#vfsSpec)"() {
            setupTest(vfsSpec)
            def snapshot = Mock(MetadataSnapshot)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

            isSameNodeType(resultRoot)
            removedNodes == [selectedChild]
            addedNodes.empty
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << (IS_PREFIX_OF_CHILD + SAME_PATH).findAll { it.childPaths.size() > 1 }
        }
    
        def "invalidating the only child by #vfsSpec.searchedPath removes the node (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsPluginIntegrationSpec.groovy

            setup:
            testDirectory.createFile("settings/somePath/settingsPlugin.gradle") << "apply from: 'path2/settings.gradle'";
            testDirectory.createFile("settings/somePath/path2/settings.gradle") << "include 'moduleA'";
            createDirs("moduleA")
    
            when:
            relocatedSettingsFile << "apply from: 'somePath/settingsPlugin.gradle'"
    
            then:
            succeeds(':moduleA:help')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ContainerTest.groovy

    import groovy.xml.XmlParser
    import spock.lang.Specification
    
    
    class ContainerTest extends Specification {
        final static String XML_TEXT = '''
                    <classpathentry exported="true" kind="con" path="somePath">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
                        <accessrules>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top