Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 218 for incoming2 (0.18 sec)

  1. src/net/http/filetransport.go

    type fileTransport struct {
    	fh fileHandler
    }
    
    // NewFileTransport returns a new [RoundTripper], serving the provided
    // [FileSystem]. The returned RoundTripper ignores the URL host in its
    // incoming requests, as well as most other properties of the
    // request.
    //
    // The typical use case for NewFileTransport is to register the "file"
    // protocol with a [Transport], as in:
    //
    //	t := &http.Transport{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ArtifactResolutionQueryIntegrationTest.groovy

                }
                task query {
                    doLast {
                        assert configurations.compileClasspath.files
                        def id = configurations.compileClasspath.incoming.resolutionResult
                            .allDependencies.first().selected.id
                        dependencies.createArtifactResolutionQuery()
                            .forComponents(id)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report-aggregation.gradle.kts

            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("incubation-report-$reportType"))
        }
        extendsFrom(reports)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/README.md

    information about the test infrastructure, see [performance](../performance) and [internal-performance-testing](../internal-performance-testing)
    
    Note that when running these tests locally, they will use the version of the build scan plugin in `../incoming/plugin.json`.  On CI, this file is populated as an artifact dependency from an upstream build.  To run locally, you will need to set this value whatever version of the build scan plugin you want to test with (whatever value is in source control is...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 716 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

        if (extraDependencies) {
          return extraDependencies(op, /*incoming=*/true);
        } else {
          return empty_op_set;
        }
      };
      auto ctrlSuccessors =
          [&](Operation* op) -> llvm::SmallVector<mlir::Operation*, 4> const& {
        if (extraDependencies) {
          return extraDependencies(op, /*incoming=*/false);
        } else {
          return empty_op_set;
        }
      };
    
      int i = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/workingWithDependencies-walkGraph/groovy/build.gradle

        scm 'commons-codec:commons-codec:1.7'
        scm 'some:unresolved:2.5'
    }
    
    // tag::walk-task[]
    tasks.register('walkDependencyGraph', DependencyGraphWalk) {
        dependencies = configurations.scm.incoming
    }
    
    abstract class DependencyGraphWalk extends DefaultTask {
    
        @Input
        abstract Property<ResolvableDependencies> getDependencies()
    
        @TaskAction
        void walk() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/WaitPrecondition.java

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    /**
     * Some action that must be met before it is legal to wait for an incoming request.
     */
    interface WaitPrecondition {
        /**
         * Must be called under lock.
         */
        void assertCanWait() throws IllegalStateException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 892 bytes
    - Viewed (0)
  8. cmd/service.go

    	}
    
    	// Invokes the execve system call.
    	// Re-uses the same pid. This preserves the pid over multiple server-respawns.
    	return syscall.Exec(argv0, os.Args, os.Environ())
    }
    
    // freezeServices will freeze all incoming S3 API calls.
    // For each call, unfreezeServices must be called once.
    func freezeServices() {
    	// Use atomics for globalServiceFreeze, so we can read without locking.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. build-logic/root-build/src/main/kotlin/gradlebuild.warmup-ec2.gradle.kts

                    configurations.forEach { c ->
                        if (c.isCanBeResolved) {
                            println("Downloading dependencies for '$path' - ${c.name}")
                            val result = c.incoming.artifactView { lenient(true) }.artifacts
                            result.failures.forEach {
                                println("- Ignoring Error: ${it.message}")
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 09:39:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/JvmDerivedVariantsIntegrationTest.groovy

            file("consumer/build.gradle") << """
    dependencies {
        implementation 'com.example:test:1.0'
    }
    
    task resolve {
        def artifacts = configurations.runtimeClasspath.incoming.artifactView {
            withVariantReselection()
            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top