- Sort Score
- Num 10 results
- Language All
Results 331 - 340 of 848 for Dependencies (0.06 seconds)
-
build-logic/build-update-utils/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") id("gradlebuild.build-logic.groovy-dsl-gradle-plugin") } description = "Provides plugins that create update tasks for the Gradle build" dependencies { implementation(projects.jvm) implementation("gradlebuild:basics") implementation("gradlebuild:module-identity") implementation(buildLibs.gson) implementation(buildLibs.jsoup)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 423 bytes - Click Count (0) -
compat/maven-model/pom.xml
<description>Model for Maven POM (Project Object Model)</description> <properties> <!-- in: ModelMerger --> <checkstyle.violation.ignore>FileLength</checkstyle.violation.ignore> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-model</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 7.1K bytes - Click Count (0) -
okhttp-java-net-cookiejar/build.gradle.kts
} project.applyOsgi( "Export-Package: okhttp3.java.net.cookiejar", "Bundle-SymbolicName: com.squareup.okhttp3.java.net.cookiejar", ) project.applyJavaModules("okhttp3.java.net.cookiejar") dependencies { "friendsApi"(projects.okhttp) compileOnly(libs.animalsniffer.annotations)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 452 bytes - Click Count (0) -
docs_src/dependencies/tutorial006_an_py310.py
async def verify_key(x_key: Annotated[str, Header()]): if x_key != "fake-super-secret-key": raise HTTPException(status_code=400, detail="X-Key header invalid") return x_key @app.get("/items/", dependencies=[Depends(verify_token), Depends(verify_key)]) async def read_items():
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 633 bytes - Click Count (0) -
tensorflow/c/BUILD
"//conditions:default": [], }), tags = [ "no_cuda_asan", # TODO(b/181771536) "no_windows", # TODO(b/155444728) ], # We must ensure that the dependencies can be dynamically linked since # the shared library must be able to use core:framework. deps = [ ":c_api", ":c_api_internal", ":c_test_util", ":test_op_kernel",Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Tue Feb 17 18:49:14 GMT 2026 - 30.3K bytes - Click Count (0) -
samples/static-server/build.gradle.kts
id("com.gradleup.shadow") } tasks.compileJava { options.isWarnings = false } tasks.jar { manifest { attributes("Main-Class" to "okhttp3.sample.SampleServer") } } dependencies { implementation(projects.okhttp) implementation(projects.mockwebserver) } tasks.shadowJar { mergeServiceFiles()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 439 bytes - Click Count (0) -
samples/compare/build.gradle.kts
plugins { kotlin("jvm") id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") } dependencies { testImplementation(projects.okhttp) testImplementation(projects.mockwebserver3) testImplementation(projects.mockwebserver3Junit5) testImplementation(projects.okhttpTls) testImplementation(projects.okhttpTestingSupport) testImplementation(libs.http.client5)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 576 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
} catch (ScheduledJobException e) { assertEquals("scheduledJob parameter is null. Cannot register a null job.", e.getMessage()); } catch (Exception e) { // Expected due to missing dependencies in test environment assertTrue(true); } } @Test public void test_register_with_cron_null_scheduledJob() { try { LaCron mockCron = new MockLaCron();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.5K bytes - Click Count (0) -
okhttp-bom/build.gradle.kts
plugins { id("okhttp.base-conventions") id("okhttp.publish-conventions") id("java-platform") } dependencies { constraints { project.rootProject.subprojects.forEach { subproject -> if (subproject.name != "okhttp-bom") { api(subproject) } } api("com.squareup.okhttp3:okhttp-jvm:${project.version}") api("com.squareup.okhttp3:okhttp-android:${project.version}") } } publishing {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 526 bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java
import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.TreeMap; import static org.apache.commons.io.FileUtils.readFileToString; /** * A task to create a notice file which includes dependencies' notices. */ public class NoticeTask extends DefaultTask { @InputFile private File inputFile = getProject().getRootProject().file("NOTICE.txt"); @OutputFileCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.9K bytes - Click Count (0)