Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 647 for incoming2 (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/jcifs/dcerpc/DcerpcSecurityProvider.java

         * 
         * @param outgoing
         * @throws DcerpcException
         */
        void wrap ( NdrBuffer outgoing ) throws DcerpcException;
    
    
        /**
         * 
         * @param incoming
         * @throws DcerpcException
         */
        void unwrap ( NdrBuffer incoming ) throws DcerpcException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

            this.projectDependencies.from(runtimeClasspath.incoming.artifactView {
                componentFilter {
                    it is ProjectComponentIdentifier
                }
            }.files)
            this.externalDependencies.from(runtimeClasspath.incoming.artifactView {
                componentFilter {
                    externalComponents.contains(it)
                }
            }.files)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnectionBuilder.java

         *
         * @param type The type
         * @return A sink. Method calls made on this object are sent as outgoing messages.
         */
        <T> T addOutgoing(Class<T> type);
    
        /**
         * Registers a handler for incoming messages on the given type. The provided handler is not required to be
         * thread-safe. Messages are delivered to the handler by a single thread.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LazyDownloadsIntegrationTest.groovy

    """
        }
    
        def "downloads only the metadata when dependency graph is queried"() {
            given:
            buildFile << """
                task graph {
                    def root = configurations.compile.incoming.resolutionResult.rootComponent
                    doLast {
                        root.get()
                    }
                }
    """
    
            when:
            module.pom.expectGet()
            module2.pom.expectGet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conditions.go

    	for _, incoming := range parentResults {
    		// We will append it if it is our first occurrence, or the existing one has an error. This means
    		// if *any* section has no errors, we will declare Admitted
    		if incoming.DeniedReason == nil {
    			successCount[incoming.OriginalReference]++
    		}
    		seen[incoming.OriginalReference] = append(seen[incoming.OriginalReference], incoming)
    		if incoming.DeniedReason != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    	// A map of topology pairs to the number of existing pods that match the anti-affinity terms of the "pod".
    	antiAffinityCounts topologyToMatchedTermCount
    	// podInfo of the incoming pod.
    	podInfo *framework.PodInfo
    	// A copy of the incoming pod's namespace labels.
    	namespaceLabels labels.Set
    }
    
    // Clone the prefilter state.
    func (s *preFilterState) Clone() framework.StateData {
    	if s == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top