Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,729 for ninit (0.93 sec)

  1. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelDslUsageIntegrationSpec.groovy

            where:
            code << [
                    "subprojects",
                    "project(':a')",
                    "if (true)"
            ]
        }
    
        def "model block can be used from init script"() {
            when:
            file("init.gradle") << """
                ${testPluginImpl()}
    
                allprojects {
                    apply type: TestPlugin
    
                    model {
                        strings {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-library' )
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            def dslFixture = dslFixtureFor(scriptDsl)
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  3. src/main/webapp/WEB-INF/web.xml

        <filter-class>org.codelibs.fess.filter.EncodingFilter</filter-class>
        <init-param>
          <param-name>encoding</param-name>
          <param-value>UTF-8</param-value>
        </init-param>
        <init-param>
          <param-name>encodingRules</param-name>
          <param-value>sjis:Shift_JIS,eucjp:EUC-JP</param-value>
        </init-param>
      </filter>
    
      <filter>
        <filter-name>corsFilter</filter-name>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 13 21:53:22 UTC 2019
    - 7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/coverage/cover.go

    	}
    
    	// Tack the call onto the start of our init function. We do this
    	// early in the init since it's possible that instrumented function
    	// bodies (with counter updates) might be inlined into init.
    	cnames.InitFn.Body.Prepend(assign)
    }
    
    // addInitHookCall generates a call to runtime/coverage.initHook() and
    // inserts it into the package main init function, which will kick off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    # Make sure resulting profile is digestible.
    go tool cover -func=cov.p
    
    # No extraneous extra files please.
    ! exists _cover_.out
    
    -- a/a.go --
    package a
    
    func init() {
    	println("package 'a' init: launch the missiles!")
    }
    
    func AFunc() int {
    	return 42
    }
    -- a/a_test.go --
    package a
    
    import "testing"
    
    func TestA(t *testing.T) {
    	if AFunc() != 42 {
    		t.Fatalf("bad!")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

                    return "none";
                }
            });
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setContentType("application/opensearchdescription+xml");
            osddHelper.init();
            assertFalse(osddHelper.hasOpenSearchFile());
    
            try {
                osddHelper.asStream();
                fail();
            } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "produces manifest for Swift component with dependencies on multiple repositories"() {
            given:
            def lib1Repo = GitFileRepository.init(testDirectory.file("repos/lib1"))
            lib1Repo.file("build.gradle") << """
                plugins {
                    id 'swift-library'
                    id 'swiftpm-export'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  8. pkg/kubelet/config/config_test.go

    	select {
    	case update := <-ch:
    		t.Errorf("Expected no update in channel, Got %#v", update)
    	default:
    	}
    }
    
    func TestNewPodAdded(t *testing.T) {
    	tCtx := ktesting.Init(t)
    
    	channel, ch, config := createPodConfigTester(tCtx, PodConfigNotificationIncremental)
    
    	// see an update
    	podUpdate := CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinLibraryInitIntegrationTest.groovy

        public static final String SAMPLE_LIBRARY_TEST_CLASS = "org/example/LibraryTest.kt"
    
        def "defaults to kotlin build scripts"() {
            when:
            run ('init', '--type', 'kotlin-library')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

            file("script.gradle") << "println 'script.gradle'"
            file("init.gradle") << "println 'init.gradle'"
    
            when:
            succeeds 'help', '-I', 'init.gradle'
    
            then:
            def scriptCompiles = operations.all(CompileScriptBuildOperationType)
    
            scriptCompiles*.displayName == relativePaths(
                "Compile initialization script 'init.gradle' (CLASSPATH)",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top