Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for hognorsk (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

                blockingServer.get(m4.jar.path).sendFile(m4.jar.file))
    
            expect:
            executer.withArguments('--max-workers', '4')
            succeeds("resolve")
        }
    
        def "parallel download honors max workers"() {
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
            def m3 = mavenRepo.module('test', 'test3', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpPluginTest.groovy

                    new Facet(FacetType.installed, "jst.java", "1.4"),
                    new Facet(FacetType.installed, 'someCoolFacet', '1.4')])
        }
    
        @Issue("GRADLE-1770")
        def "wb resource honors web app dir even if configured after plugin appliance"() {
            when:
            project.apply(plugin: 'war')
            project.apply(plugin: 'eclipse-wtp')
            project.webAppDirName = 'foo'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 08 10:14:49 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

            assertBuildAborted(handle)
            assertSuggestedResolutionsToExistingFilesProblem(handle)
        }
    
        def "prompts to overwrite files if any exist and honors yes"() {
            given: "a file exists in the build directory"
            targetDir.file(defaultFileName).touch()
    
            when:
            def handle = startInteractiveExecutorWithTasks(
                "init",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (1)
  4. src/cmd/doc/main.go

    	flagSet.StringVar(&chdir, "C", "", "change to `dir` before running command")
    	flagSet.BoolVar(&unexported, "u", false, "show unexported symbols as well as exported")
    	flagSet.BoolVar(&matchCase, "c", false, "symbol matching honors case (paths not affected)")
    	flagSet.BoolVar(&showAll, "all", false, "show all documentation for package")
    	flagSet.BoolVar(&showCmd, "cmd", false, "show symbols with package docs even if package is a command")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            and:
            configurationCacheRun ":b:assemble"
    
            then:
            new ZipTestFixture(jarFile).assertContainsFile("b/B.class")
        }
    
        def "processResources on Java project honors task outputs"() {
            given:
            buildFile << """
                apply plugin: 'java'
            """
            file("src/main/resources/answer.txt") << "42"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "false")
        def "can add variants for ivy - #usageAttribute - honors conf based excludes "() {
            // through this, we opt-into variant aware dependency management for a pure ivy module
            given:
            repository {
                'org.test:moduleA:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/flags.cc

      //
      // The `enable_mlir_bridge_is_explicit` variable tracks whether or not the
      // user has made an explicit request. That is, if this variable is set to
      // true, the program honors the user's request as per `enable_mlir_bridge`; if
      // it's set to false, the default behavior is used (which may run either
      // bridge, on a per-graph basis).
      bool enable_mlir_bridge = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            (lines.find { it.startsWith 'set CLASSPATH=' } - 'set CLASSPATH=').split(';').collect([] as Set) { it - '%APP_HOME%\\lib\\' }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21505")
        def "run task honors applicationDefaultJvmArgs"() {
            given:
            buildFile """
                application.applicationDefaultJvmArgs = ['-DFOO=42']
            """
            when:
            succeeds 'run'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    	uuid := mustGetUUID()
    	filePath := pathJoin(s.drivePath, minioMetaTmpDeletedBucket, ".writable-check-"+uuid+".tmp")
    
    	// Create top level directories if they don't exist.
    	// with mode 0o777 mkdir honors system umask.
    	mkdirAll(pathutil.Dir(filePath), 0o777, s.drivePath) // don't need to fail here
    
    	w, err := s.openFileDirect(filePath, os.O_CREATE|os.O_WRONLY|os.O_EXCL)
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  10. src/image/gif/writer_test.go

    	}
    	if !e.colorTablesMatch(len(local), trIdx) {
    		t.Fatal("colorTablesMatch() == false, expected true")
    	}
    }
    
    func TestEncodeCroppedSubImages(t *testing.T) {
    	// This test means to ensure that Encode honors the Bounds and Strides of
    	// images correctly when encoding.
    	whole := image.NewPaletted(image.Rect(0, 0, 100, 100), palette.Plan9)
    	subImages := []image.Rectangle{
    		image.Rect(0, 0, 50, 50),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top