Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for some_path (0.24 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. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      Status status = env_->CreateDir(dirpath);
      if (!status.ok()) GTEST_SKIP() << "CreateDir() not supported: " << status;
    
      const std::string some_path = GetURIForPath("a_dir/another_dir");
      status = env_->CreateDir(some_path);
      if (!status.ok()) GTEST_SKIP() << "CreateDir() not supported: " << status;
    
      const std::string another_path = GetURIForPath("a_dir/yet_another_dir");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/volume/nfs/nfs_test.go

    	}
    	doTestPlugin(t, volume.NewSpecFromVolume(vol), "localhost:/somepath")
    }
    
    func TestIPV6VolumeSource(t *testing.T) {
    	vol := &v1.Volume{
    		Name:         "vol1",
    		VolumeSource: v1.VolumeSource{NFS: &v1.NFSVolumeSource{Server: "0:0:0:0:0:0:0:1", Path: "/somepath", ReadOnly: false}},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/GradlePluginIntegrationTest.groovy

            setup:
            def externalInitFile = temporaryFolder.createFile("initscripts/somePath/anInit.gradle")
            externalInitFile << """
            buildFinished {
                println "Gradle Plugin received build finished!"
            }
            """
            when:
            initFile << """
            apply from: "somePath/anInit.gradle"
            """
            then:
            def executed = succeeds('tasks')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top