Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for some_path (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterTest.groovy

            def taskDescriptor = Mock(InternalTaskDescriptor)
            _ * taskDescriptor.getId() >> 2
            _ * taskDescriptor.getName() >> 'some task'
            _ * taskDescriptor.getTaskPath() >> ':some:path'
            _ * taskDescriptor.getParentId() >> buildDescriptor.getId()
    
            def buildStartEvent = Mock(InternalOperationStartedProgressEvent)
            _ * buildStartEvent.getEventTime() >> 999
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "file://localhost/somepath")));
            assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "file://localhost/D:/somepath")));
            assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://localhost")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/labels_test.go

    			},
    			TCPSocket: &v1.TCPSocketAction{
    				Port: intstr.FromString("80"),
    			},
    		},
    	}
    	container := &v1.Container{
    		Name:                   "test_container",
    		TerminationMessagePath: "/somepath",
    		Lifecycle:              lifecycle,
    	}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:                       "test_pod",
    			Namespace:                  "test_pod_namespace",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 22:43:36 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/make.bat

    set...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. scripts/docs.py

        typer.echo(f"Building docs for: {lang}")
        build_site_dist_path = build_site_path / lang
        if lang == "en":
            dist_path = site_path
            # Don't remove en dist_path as it might already contain other languages.
            # When running build_all(), that function already removes site_path.
            # All this is only relevant locally, on GitHub Actions all this is done through
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

            return Files.isDirectory(homePath.resolve("modules/java.base"));
        }
    
        // copy of 'com.intellij.openapi.projectRoots.JdkUtil.isModularRuntime'
        private static boolean isModularRuntime(@NotNull Path homePath) {
            return Files.isRegularFile(homePath.resolve("lib/jrt-fs.jar")) || isExplodedModularRuntime(homePath);
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            assertProblemFree(collector);
            assertEquals("${test}/somepath", out.getScm().getConnection());
        }
    
        @Test
        public void testShouldThrowExceptionOnRecursiveScmConnectionReference() throws Exception {
            Scm scm = Scm.newBuilder()
                    .connection("${project.scm.connection}/somepath")
                    .build();
            Model model = Model.newBuilder().scm(scm).build();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top