Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 605 for incoming2 (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                }
            } else {
                for (EdgeState incoming : Lists.newArrayList(incomingEdges)) {
                    if (incoming.getDependencyState().getDependency().isEndorsingStrictVersions()) {
                        // pass my own component because we are already in the process of re-selecting it
                        incoming.getFrom().reselect();
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    type scoreMap map[string]map[string]int64
    
    // preScoreState computed at PreScore and used at Score.
    type preScoreState struct {
    	topologyScore scoreMap
    	podInfo       *framework.PodInfo
    	// A copy of the incoming pod's namespace labels.
    	namespaceLabels labels.Set
    }
    
    // Clone implements the mandatory Clone interface. We don't really copy the data since
    // there is no need for that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    task resolveRed(type: Resolve) {
                        artifacts = configurations.compile.incoming.artifactView {
                            attributes { it.attribute(color, 'red') }
                        }.artifacts
                    }
                    task resolveYellow(type: Resolve) {
                        artifacts = configurations.compile.incoming.artifactView {
                            attributes { it.attribute(color, 'yellow') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top