Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 218 for incoming2 (0.28 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. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftBinaryTest.groovy

        }
    
        def "compileModules is a transformed view of compile"() {
            given:
            compile.incoming >> incoming
    
            when:
            binary.compileModules.files
    
            then:
            1 * incoming.artifacts >> Stub(ArtifactCollection)
        }
    
        def "creates configurations for the binary" () {
            expect:
            binary.linkLibraries == link
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactCollectionIntegrationTest.groovy

                }
    """
        }
    
        def "artifact collection has resolved artifact files and metadata"() {
            when:
            buildFile << """
                def artifacts = configurations.compile.incoming.artifacts
    
                task checkArtifacts {
                    doLast {
                        def artifactFiles = artifacts.artifactFiles
                        def artifactResults = artifacts.artifacts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesLocalComponentIntegrationTest.groovy

                    implementation(project(":producer"))
                }
    
                task resolve {
                    def conf = configurations.classpath
                    def root = conf.incoming.resolutionResult.root
                    def artifactVariants = conf.incoming.artifacts.artifacts.collect { it.variant }
                    doLast {
                        def graphVariant = root.dependencies.find { it.selected.id.projectPath == ":producer" }.resolvedVariant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 03:06:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    // filter when they previously didn't.
    func Filter(w Interface, f FilterFunc) Interface {
    	fw := &filteredWatch{
    		incoming: w,
    		result:   make(chan Event),
    		f:        f,
    	}
    	go fw.loop()
    	return fw
    }
    
    type filteredWatch struct {
    	incoming Interface
    	result   chan Event
    	f        FilterFunc
    }
    
    // ResultChan returns a channel which will receive filtered events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. cmd/routers.go

    	// sets the amz request id).
    	httpTracerMiddleware,
    	// Auth middleware verifies incoming authorization headers and routes them
    	// accordingly. Client receives a HTTP error for invalid/unsupported
    	// signatures.
    	//
    	// Validates all incoming requests to have a valid date header.
    	setAuthMiddleware,
    	// Redirect some pre-defined browser request paths to a static location
    	// prefix.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

                detached.dependencies.add(project.dependencies.create(project(':other')))
    
                task checkDependencies(type: CheckDependencies) {
                    result = detached.incoming.resolutionResult.rootComponent
                    artifacts = detached.incoming.artifacts
                }
    
            """
    
            file("other/build.gradle") << """
                plugins {
                    id 'java-library'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactCollectionResultProviderIntegrationTest.groovy

            buildFile << """
                tasks.register('checkArtifacts', TaskWithArtifactCollectionResultProviderInput) {
                    artifactFiles.from(configurations.compile.incoming.artifacts.artifactFiles)
                    resolvedArtifacts.set(configurations.compile.incoming.artifacts.resolvedArtifacts)
                    outputFile.set(layout.buildDirectory.file('output.txt'))
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/middleware.md

    ## `HTTPSRedirectMiddleware`
    
    Enforces that all incoming requests must either be `https` or `wss`.
    
    Any incoming requests to `http` or `ws` will be redirected to the secure scheme instead.
    
    ```Python hl_lines="2  6"
    {!../../../docs_src/advanced_middleware/tutorial001.py!}
    ```
    
    ## `TrustedHostMiddleware`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 10 18:27:10 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnection.java

         * Commences a graceful stop of this connection. Stops accepting outgoing messages. Requests that the peer stop
         * sending incoming messages.
         */
        @Override
        void requestStop();
    
        /**
         * Performs a graceful stop of this connection. Stops accepting outgoing messages. Blocks until all incoming messages
         * have been handled, and all outgoing messages have been forwarded to the peer.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top