Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,573 for before8 (0.3 sec)

  1. src/cmd/go/internal/imports/build.go

    	// innocuous source code in "android.go". The easiest fix: cut everything
    	// in the name before the initial _.
    	i := strings.Index(name, "_")
    	if i < 0 {
    		return true
    	}
    	name = name[i:] // ignore everything before first _
    
    	l := strings.Split(name, "_")
    	if n := len(l); n > 0 && l[n-1] == "test" {
    		l = l[:n-1]
    	}
    	n := len(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            given: "a directory with a file"
            def unzippedDir = file("before/files")
            unzippedDir.file("sub/c.txt").touch()
    
            and: "a zip file containing it"
            def zipFile = file("before/files.zip")
            unzippedDir.zipTo(zipFile)
    
            and: "another zip file with the same contents"
            def zipFile2 = file("before/files2.zip")
            unzippedDir.zipTo(zipFile2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4LoggingOutputCaptureIntegrationTest.groovy

                    "Test class OkTest -> class loaded\n" +
                    "Test class OkTest -> before class out\n" +
                    "Test class OkTest -> before class err\n" +
                    "Test anotherOk(OkTest) -> test constructed\n" +
                    "Test anotherOk(OkTest) -> before out\n" +
                    "Test anotherOk(OkTest) -> before err\n" +
                    "Test anotherOk(OkTest) -> ok out\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. refactorings/CharMatcherRewrite.java

     */
    public class CharMatcherRewrite {
      class Whitespace {
        @BeforeTemplate
        CharMatcher before() {
          return CharMatcher.WHITESPACE;
        }
    
        @AfterTemplate
        CharMatcher after() {
          return CharMatcher.whitespace();
        }
      }
    
      class BreakingWhitespace {
        @BeforeTemplate
        CharMatcher before() {
          return CharMatcher.BREAKING_WHITESPACE;
        }
    
        @AfterTemplate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 28 19:03:28 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/querytest.txt

    echo 'before v0.0.1'
    cp stdout status
    git commit -a -m 'before v0.0.1'
    
    echo 'at v0.0.1'
    cp stdout status
    git commit -a -m 'at v0.0.1'
    git tag 'v0.0.1'
    
    echo 'before v0.0.2'
    cp stdout status
    git commit -a -m 'before v0.0.2'
    
    echo 'at v0.0.2'
    cp stdout status
    git commit -a -m 'at v0.0.2'
    git tag 'v0.0.2'
    
    echo 'before v0.0.3'
    cp stdout status
    git commit -a -m 'before v0.0.3'
    
    echo 'at v0.0.3'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/extensions/MultiTestLifecycleSpec.groovy

                "setup spec",
                "rule before", "setup", "simple test: isFluid: false", "cleanup", "rule after",
                "rule before", "setup", "simple test: isFluid: true", "cleanup", "rule after",
                "rule before", "setup", "unrolled test: 1: isFluid: false", "cleanup", "rule after",
                "rule before", "setup", "unrolled test: 1: isFluid: true", "cleanup", "rule after",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/go/doc/testdata/d.0.golden

    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    	// C1 should be second. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

            outputContains(
                "Test class OkTest -> class loaded\n" +
                "Test class OkTest -> before class out\n" +
                "Test class OkTest -> before class err\n" +
                "Test class OkTest -> test constructed\n" +
                "Test anotherOk(OkTest) -> before out\n" +
                "Test anotherOk(OkTest) -> before err\n" +
                "Test anotherOk(OkTest) -> ok out\n" +
                "Test anotherOk(OkTest) -> ok err\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/fix/fix.go

    		walkBeforeAfter(&n.Post, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    	case *ast.RangeStmt:
    		walkBeforeAfter(&n.Key, before, after)
    		walkBeforeAfter(&n.Value, before, after)
    		walkBeforeAfter(&n.X, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    
    	case *ast.ImportSpec:
    	case *ast.ValueSpec:
    		walkBeforeAfter(&n.Type, before, after)
    		walkBeforeAfter(&n.Values, before, after)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  10. tests/callbacks_test.go

    			callbacks: []callback{{h: c1}, {h: c2, before: "c4", after: "c5"}, {h: c3}, {h: c4}, {h: c5}},
    			results:   []string{"c1", "c5", "c2", "c3", "c4"},
    		},
    		{
    			callbacks: []callback{{h: c1, after: "c3"}, {h: c2, before: "c4", after: "c5"}, {h: c3, before: "c5"}, {h: c4}, {h: c5}},
    			results:   []string{"c3", "c1", "c5", "c2", "c4"},
    		},
    		{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top