Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,729 for ninit (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r68/KotlinDslDefaultScriptsModelCrossVersionSpec.groovy

            and:
            assertModelMatchesBuildSpec(model, spec)
        }
    
        def "can fetch model for the init scripts of a build in lenient mode"() {
    
            given:
            def spec = withBuildSrcAndInitScripts()
    
            and:
            spec.scripts.init << """
                script_body_compilation_error
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 21 09:28:30 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r68/KotlinDslGivenScriptsModelCrossVersionSpec.groovy

            and:
            assertModelMatchesBuildSpec(model, spec)
        }
    
        def "can fetch model for a given set of init scripts of a build in lenient mode"() {
    
            given:
            def spec = withBuildSrcAndInitScripts()
            def requestedScripts = spec.scripts.values()
    
            and:
            spec.scripts.init << """
                script_body_compilation_error
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 21 09:28:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

                    'infoProject2ScriptClassPathOut',
                    'settings info out',
                    'settings info log',
                    'init : INFO out',
                    'init :buildSrc INFO out',
                    'init :buildSrc INFO err',
                    'init :buildSrc info log',
                    'main buildSrc info',
                    'nestedBuild buildSrc info',
                    'nestedBuild info',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/context/SingletonContext.java

         * <blockquote>
         * 
         * <pre>
         * Exception MalformedURLException: unknown protocol: smb
         *     at java.net.URL.&lt;init&gt;(URL.java:480)
         *     at java.net.URL.&lt;init&gt;(URL.java:376)
         *     at java.net.URL.&lt;init&gt;(URL.java:330)
         *     at jcifs.smb.SmbFile.&lt;init&gt;(SmbFile.java:355)
         *     ...
         * </pre>
         * 
         * <blockquote>
         * 
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 08:53:08 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinGradlePluginInitIntegrationTest.groovy

    class KotlinGradlePluginInitIntegrationTest extends AbstractInitIntegrationSpec {
    
        @Override
        String subprojectName() { 'plugin' }
    
        def "defaults to kotlin build scripts"() {
            when:
            run ('init', '--type', 'kotlin-gradle-plugin')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyGradlePluginInitIntegrationTest.groovy

    class GroovyGradlePluginInitIntegrationTest extends AbstractInitIntegrationSpec {
    
        @Override
        String subprojectName() { 'plugin' }
    
        def "defaults to Groovy build scripts"() {
            when:
            run('init', '--type', 'groovy-gradle-plugin')
    
            then:
            dslFixtureFor(GROOVY).assertGradleFilesGenerated()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 19:50:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver.go

    					obj := NewConst(name.Pos(), pkg, name.Value, nil, iota)
    
    					var init syntax.Expr
    					if i < len(values) {
    						init = values[i]
    					}
    
    					d := &declInfo{file: fileScope, vtyp: last.Type, init: init, inherited: inherited}
    					check.declarePkgObj(name, obj, d)
    				}
    
    				// Constants must always have init values.
    				check.arity(s.Pos(), s.NameList, values, true, inherited)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/flag/example_test.go

    // Example 2: Two flags sharing a variable, so we can have a shorthand.
    // The order of initialization is undefined, so make sure both use the
    // same default value. They must be set up with an init function.
    var gopherType string
    
    func init() {
    	const (
    		defaultGopher = "pocket"
    		usage         = "the variety of gopher"
    	)
    	flag.StringVar(&gopherType, "gopher_type", defaultGopher, usage)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/text/scanner/example_test.go

    	// example:5:1: }
    }
    
    func Example_isIdentRune() {
    	const src = "%var1 var2%"
    
    	var s scanner.Scanner
    	s.Init(strings.NewReader(src))
    	s.Filename = "default"
    
    	for tok := s.Scan(); tok != scanner.EOF; tok = s.Scan() {
    		fmt.Printf("%s: %s\n", s.Position, s.TokenText())
    	}
    
    	fmt.Println()
    	s.Init(strings.NewReader(src))
    	s.Filename = "percent"
    
    	// treat leading '%' as part of an identifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 02:01:58 UTC 2018
    - 2.7K bytes
    - Viewed (0)
Back to top