Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for pipetest (0.5 sec)

  1. src/test/java/jcifs/tests/PipeTest.java

    import jcifs.smb.SID;
    
    
    /**
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    public class PipeTest extends BaseCIFSTest {
    
        /**
         * @param name
         * @param properties
         */
        public PipeTest ( String name, Map<String, String> properties ) {
            super(name, properties);
        }
    
    
        @Parameters ( name = "{0}" )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  2. src/io/pipe_test.go

    type closer interface {
    	CloseWithError(error) error
    	Close() error
    }
    
    type pipeTest struct {
    	async          bool
    	err            error
    	closeWithError bool
    }
    
    func (p pipeTest) String() string {
    	return fmt.Sprintf("async=%v err=%v closeWithError=%v", p.async, p.err, p.closeWithError)
    }
    
    var pipeTests = []pipeTest{
    	{true, nil, false},
    	{true, nil, true},
    	{true, ErrShortWrite, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    		}
    	})
    }
    
    var helperCommandUsed sync.Map
    
    var helperCommands = map[string]func(...string){
    	"echo":          cmdEcho,
    	"echoenv":       cmdEchoEnv,
    	"cat":           cmdCat,
    	"pipetest":      cmdPipeTest,
    	"stdinClose":    cmdStdinClose,
    	"exit":          cmdExit,
    	"describefiles": cmdDescribeFiles,
    	"stderrfail":    cmdStderrFail,
    	"yes":           cmdYes,
    	"hang":          cmdHang,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. src/os/exec/exec_posix_test.go

    	}
    }
    
    // For issue #19314: make sure that SIGSTOP does not cause the process
    // to appear done.
    func TestWaitid(t *testing.T) {
    	t.Parallel()
    
    	cmd := helperCommand(t, "pipetest")
    	stdin, err := cmd.StdinPipe()
    	if err != nil {
    		t.Fatal(err)
    	}
    	stdout, err := cmd.StdoutPipe()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := cmd.Start(); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:21:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/AllTests.java

        ContextConfigTest.class, PACTest.class, NtlmTest.class, FileLocationTest.class, SessionTest.class, KerberosTest.class, TimeoutTest.class,
        SidTest.class, NamingTest.class, DfsTest.class, FileAttributesTest.class, EnumTest.class, PipeTest.class, FileOperationsTest.class,
        WatchTest.class, ReadWriteTest.class, ConcurrencyTest.class, RandomAccessFileTest.class, OplockTests.class
    } )
    
    public class AllTests {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  6. maven-model/src/test/java/org/apache/maven/model/SiteTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Site}.
     *
     */
    class SiteTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Site().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Site().equals(null));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/support/ZipTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Assert.fail
    import org.junit.Test
    
    import java.io.File
    import java.util.zip.ZipEntry
    import java.util.zip.ZipOutputStream
    
    
    class ZipTest : TestWithTempFiles() {
    
        @Test
        fun `unzip fails on path traversal attempts`() {
    
            val maliciousZip = file("malicious.zip").apply {
                ZipOutputStream(outputStream()).use { zip ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/tasks/bundling/ZipTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks.bundling
    
    class ZipTest extends AbstractArchiveTaskTest {
        Zip zip
    
        def setup()  {
            zip = createTask(Zip)
            configure(zip)
        }
    
        @Override
        AbstractArchiveTask getArchiveTask() {
            zip
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 06 15:32:15 UTC 2021
    - 1K bytes
    - Viewed (0)
  9. src/os/pipe_test.go

    Dmitri Shuralyov <******@****.***> 1693765382 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/net/pipe_test.go

    Bryan C. Mills <******@****.***> 1551453150 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.2K bytes
    - Viewed (0)
Back to top