Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for hognorsk (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

            problems.assertResultHasProblems(failure) {
                withProblem "Task `:report` of type `org.gradle.api.DefaultTask`: invocation of 'Task.extensions' at execution time is unsupported."
            }
        }
    
        def "honors task up-to-date spec"() {
            buildFile << """
                abstract class TaskWithComplexInputs extends DefaultTask {
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                    public void start(Stage stage) {
                    }
                }
            """
    
            expect:
            succeeds("compileJava")
        }
    
        def "honors project level compatibility when using toolchain"() {
            given:
            def lower = getLowerJvm()
            def lowerVersion = lower.javaVersion.getMajorVersion()
    
            and:
            goodCode()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            'String'           | '"abc"'                    | 'java.lang.String'        | "Type is in 'java.*' or 'javax.*' package that are reserved for standard Java API types."
        }
    
        def "honors configured Java Toolchain to avoid compiled by a more recent version failure"() {
            disableProblemsApiCheck()
            def currentJdk = Jvm.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            doesNotResolve b, c
    
            when:
            def result = resolve()
            result.rethrowFailure()
    
            then:
            result.components == ids(root, a, b, c)
        }
    
        def "honors component replacements"() {
            given:
            def a = revision('a') // a->c
            def b = revision('b') // b->d, replaces a
            def c = revision('c') //transitive of evicted a
            def d = revision('d')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  10. RELEASE.md

        `reduce_` ops.
    *   Move `TensorForestEstimator` to `contrib/tensor_forest`.
    *   Enable compiler optimizations by default and allow configuration in
        configure.
    *   `tf.divide` now honors the name field.
    *   Make metrics weight broadcasting more strict.
    *   Add new queue-like `StagingArea` and new ops: `stage` and `unstage`.
    *   Enable inplace update ops for strings on CPU. Speed up string concat.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top