Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 466 for CD (0.02 sec)

  1. fuzzing/fuzzingserver-update-expected.sh

    #!/usr/bin/env bash
    
    SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
    cd "$SCRIPT_DIR"
    
    if [ ! -f target/fuzzingserver-actual.txt ]; then
      echo "File not found. Did you run the Autobahn test script?"
      exit 1
    fi
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 275 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_init_path.txt

    env GO111MODULE=on
    
    ! go mod init .
    stderr '^go: malformed module path ".": is a local import path$'
    
    cd x
    go mod init example.com/x
    
    cd ../y
    go mod init m
    
    -- x/main.go --
    package main
    
    func main() {}
    
    -- y/main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 24 20:57:01 UTC 2021
    - 248 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_acl_windows.txt

    cp stdout $WORK\exe-acl.txt
    exec powershell -Command 'Get-Acl main.go | Select -expand AccessToString'
    cp stdout $WORK\src-acl.txt
    cd $TMP
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\guest-acl.txt
    
    cd $WORK
    
    # The executable written to the source directory should have the same ACL as the source file.
    cmp $WORK\exe-acl.txt $WORK\src-acl.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv12-RSA-RSAPSS

    00000050  28 1c f8 42 e6                                    |(..B.|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 20 6f a9 ff 13 fb  |.......... o....|
    00000010  85 fa e4 fc cd ca 74 59  21 cd 3c fd 73 43 a2 48  |......tY!.<.sC.H|
    00000020  f5 cf cd f7 9b 24 1d db  8a 52 a6 17 03 03 00 1d  |.....$...R......|
    00000030  63 25 92 b2 0c f7 d1 92  83 95 3c 13 ee 78 4c c1  |c%........<..xL.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertEquals("jarArchiver", cr.getFieldName());
    
            ComponentDependency cd = pd.getDependencies().get(0);
    
            assertEquals("org.apache.maven", cd.getGroupId());
            assertEquals("maven-plugin-api", cd.getArtifactId());
            assertEquals("2.0.6", cd.getVersion());
            assertEquals("jar", cd.getType());
    
            md = pd.getMojos().get(1);
    
            assertEquals("war", md.getGoal());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:51:47 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/regexp/syntax/simplify_test.go

    package syntax
    
    import "testing"
    
    var simplifyTests = []struct {
    	Regexp string
    	Simple string
    }{
    	// Already-simple constructs
    	{`a`, `a`},
    	{`ab`, `ab`},
    	{`a|b`, `[ab]`},
    	{`ab|cd`, `ab|cd`},
    	{`(ab)*`, `(ab)*`},
    	{`(ab)+`, `(ab)+`},
    	{`(ab)?`, `(ab)?`},
    	{`.`, `(?s:.)`},
    	{`^`, `(?m:^)`},
    	{`$`, `(?m:$)`},
    	{`[ac]`, `[ac]`},
    	{`[^ac]`, `[^ac]`},
    
    	// Posix character classes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv13-CHACHA20-SHA256

    000000e0  1d 00 20 2f e5 7d a3 47  cd 62 43 15 28 da ac 5f  |.. /.}.G.bC.(.._|
    000000f0  bb 29 07 30 ff f6 84 af  c4 cf c2 ed 90 99 5f 58  |.).0.........._X|
    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 7a 02 00 00  76 03 03 3d 50 78 7e 02  |....z...v..=Px~.|
    00000010  dc 79 3a 32 6b 6a 50 24  90 65 72 5e cd fc 96 18  |.y:2kjP$.er^....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_env.txt

    go env GOWORK
    stdout '^'$GOPATH'[\\/]src[\\/]go.work$'
    go env
    stdout '^(set )?GOWORK=''?'$GOPATH'[\\/]src[\\/]go.work''?$'
    
    cd ..
    go env GOWORK
    ! stdout .
    go env
    stdout 'GOWORK=("")?'
    
    cd src
    go env GOWORK
    stdout 'go.work'
    
    env GOWORK='off'
    go env GOWORK
    stdout 'off'
    
    ! go env -w GOWORK=off
    stderr '^go: GOWORK cannot be modified$'
    
    -- go.work --
    go 1.18
    
    use a
    -- a/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 14:28:38 UTC 2023
    - 399 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_in_testdata_dir.txt

    # 'mod tidy' removed dependencies if the module root was
    # within a directory named 'testdata' or '_foo'.
    
    env GO111MODULE=on
    
    # A module should be allowed in a directory named testdata.
    cd $WORK/testdata
    go mod init testdata.tld/foo
    
    # Getting a package within that module should resolve its dependencies.
    go get
    grep 'rsc.io/quote' go.mod
    
    # Tidying the module should preserve those dependencies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 969 bytes
    - Viewed (0)
  10. test/abi/spills3.go

    }
    
    //go:noinline
    func spills(px *i4) {
    }
    
    //go:registerparams
    //go:noinline
    func F(x i4) i4 {
    	ab := x.a + x.b
    	bc := x.b + x.c
    	cd := x.c + x.d
    	ad := x.a + x.d
    	ba := x.a - x.b
    	cb := x.b - x.c
    	dc := x.c - x.d
    	da := x.a - x.d
    	i := i4{ab*bc + da, cd*ad + cb, ba*cb + ad, dc*da + bc}
    	spills(&i)
    	return i
    }
    
    func main() {
    	x := i4{1, 2, 3, 4}
    	y := x
    	z := F(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top