Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 383 for createfing (0.18 sec)

  1. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

        }
    
        processResources {
            from(writeVersionsManifest)
        }
    }
    
    // -- Embedded Kotlin dependencies -------------------------------------
    
    val embeddedKotlinBaseDependencies by configurations.creating
    
    dependencies {
        embeddedKotlinBaseDependencies(libs.kotlinStdlib)
        embeddedKotlinBaseDependencies(libs.kotlinReflect)
    }
    
    val writeEmbeddedKotlinDependencies by tasks.registering {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/build.gradle.kts

                    "org.jetbrains.kotlin.analysis.api.permissions.KaAllowProhibitedAnalyzeFromWriteAction"
                )
            )
        }
    }
    
    val generatorClasspath by configurations.creating
    
    dependencies {
        implementation(project(":compiler:fir:fir-serialization"))
        implementation(project(":compiler:backend"))
        generatorClasspath(project(":analysis:analysis-api-fir:analysis-api-fir-generator"))
    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/settings.md

    ### Settings and testing
    
    Then it would be very easy to provide a different settings object during testing by creating a dependency override for `get_settings`:
    
    ```Python hl_lines="9-10  13  21"
    {!../../../docs_src/settings/app02/test_main.py!}
    ```
    
    In the dependency override we set a new value for the `admin_email` when creating the new `Settings` object, and then we return that new object.
    
    Then we can test that it is used.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/start.go

    	if _, err := os.Stat(telemetry.Default.LocalDir()); err != nil {
    		// There was a problem statting LocalDir, which is needed for both
    		// crash monitoring and counter uploading. Most likely, there was an
    		// error creating telemetry.LocalDir in the counter.Open call above.
    		// Don't start the child.
    		return result
    	}
    
    	var reportCrashes = config.ReportCrashes && crashmonitor.Supported()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                configurations {
                    consumable("default") {
                        outgoing {
                            variants {
                                val v1 by creating { }
                                val v2 by creating { }
                            }
                        }
                    }
    
                    dependencyScope("myDependencies")
    
                    resolvable("resolveMe") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            contents.createFile("META-INF/services/$serviceType") << serviceProvider
            contents.zipTo(jar)
        }
    
        private void createJarFileWithResources(TestFile jar, List<String> resourceNames) {
            TestFile contents = tmpDir.createDir("contents/$jar.name")
            resourceNames.each { resourceName ->
                contents.createFile(resourceName) << resourceName
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

            def javaCompile = project.tasks.create("compileJava", JavaCompile)
            javaCompile.destinationDirectory.fileValue(temporaryFolder.createDir())
            def invalidJavac = temporaryFolder.createFile("invalidJavac")
    
            when:
            javaCompile.options.fork = true
            javaCompile.options.forkOptions.executable = invalidJavac.absolutePath
            javaCompile.createSpec()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sha3
    
    // This file provides functions for creating instances of the SHA-3
    // and SHAKE hash functions, as well as utility functions for hashing
    // bytes.
    
    import (
    	"hash"
    )
    
    // New224 creates a new SHA3-224 hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                        return modelName == "${SomeToolingModel.class.name}"
                    }
                    Object buildAll(String modelName, Project project) {
                        println("creating model for \$project")
                        $content
                    }
                }
            """.stripIndent()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. pkg/volume/util/atomic_writer.go

    //     the real data:
    //     <target-dir>/..data          -> ..2016_02_01_15_04_05.12345678/
    //     NOTE(claudiub): We need to create these symlinks AFTER we've finished creating and
    //     linking everything else. On Windows, if a target does not exist, the created symlink
    //     will not work properly if the target ends up being a directory.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top