Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for incoming2 (0.41 sec)

  1. pilot/pkg/model/destination_rule.go

    			// If there is no top level policy and the incoming rule has top level
    			// traffic policy, use the one from the incoming rule.
    			if mergedRule.TrafficPolicy == nil && rule.TrafficPolicy != nil {
    				mergedRule.TrafficPolicy = rule.TrafficPolicy
    			}
    			// If there is no exportTo in the existing rule and
    			// the incoming rule has an explicit exportTo, use the
    			// one from the incoming rule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. internal/grid/manager.go

    	AuthRequest  func(r *http.Request) error // Validate incoming requests.
    	TLSConfig    *tls.Config                 // TLS to apply to the connections.
    	Incoming     func(n int64)               // Record incoming bytes.
    	Outgoing     func(n int64)               // Record outgoing bytes.
    	BlockConnect chan struct{}               // If set, incoming and outgoing connections will be blocked until closed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    }
                }
                task merge(type: InputFilesTask) {
    // TODO: test with `incoming.files.elements` directly
    //                inFiles.set(configurations.implementation.incoming.files.elements)
                    inFiles.set(
                        configurations.implementation.incoming.artifactView {
                            attributes { attribute(artifactType, 'jar') }
                        }.files.elements
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. 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)
  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. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        public List<ComponentState> getDependents() {
            List<ComponentState> incoming = Lists.newArrayListWithCapacity(nodes.size());
            for (NodeState node : nodes) {
                for (EdgeState dependencyEdge : node.getIncomingEdges()) {
                    incoming.add(dependencyEdge.getFrom().getComponent());
                }
            }
            return incoming;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

        }
    
        Set<EdgeState> getIncomingEdges() {
            Set<EdgeState> incoming = new LinkedHashSet<>();
            if (selected != null) {
                for (NodeState nodeState : selected.getNodes()) {
                    incoming.addAll(nodeState.getIncomingEdges());
                }
            }
            return incoming;
        }
    
        VirtualPlatformState getPlatformState() {
            if (platformState == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/InternalTransformer.java

     *
     * <p>A {@code Transformer} transforms objects of type.</p>
     *
     * <p>Implementations are free to return new objects or mutate the incoming value.</p>
     *
     * @param <OUT> The type the value is transformed to.
     * @param <IN> The type of the value to be transformed.
     */
    public interface InternalTransformer<OUT, IN> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. internal/grid/connection.go

    			fmt.Println(m.MuxID, c.String(), "handleMuxServerMsg: DELETING MUX")
    		}
    		c.outgoing.Delete(m.MuxID)
    	}
    }
    
    func (c *Connection) deleteMux(incoming bool, muxID uint64) {
    	if incoming {
    		if debugPrint {
    			fmt.Println("deleteMux: disconnect incoming mux", muxID)
    		}
    		v, loaded := c.inStream.LoadAndDelete(muxID)
    		if loaded && v != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                }
    
                def intermediateFiles = configurations.implementation.incoming.artifactView {
                    attributes.attribute(color, 'green')
                }.files
    
                dependencies {
                    transformed files(intermediateFiles)
                }
    
                def transformedFiles = configurations.transformed.incoming.artifactView {
                    attributes.attribute(color, 'red')
                }.files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
Back to top