Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,061 for incoming (0.05 seconds)

  1. guava/src/com/google/common/graph/IncidentEdgeSet.java

    abstract class IncidentEdgeSet<N> extends AbstractSet<EndpointPair<N>> {
      final N node;
      final ArchetypeGraph<N> graph;
      final EdgeType edgeType;
    
      enum EdgeType {
        INCOMING, // incoming incident edges only
        OUTGOING, // outgoing incident edges only
        BOTH // both incoming and outgoing incident edges
      }
    
      IncidentEdgeSet(ArchetypeGraph<N> graph, N node, EdgeType edgeType) {
        this.graph = graph;
        this.node = node;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 07 15:57:03 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  2. docs/en/docs/advanced/middleware.md

    ## `HTTPSRedirectMiddleware` { #httpsredirectmiddleware }
    
    Enforces that all incoming requests must either be `https` or `wss`.
    
    Any incoming request to `http` or `ws` will be redirected to the secure scheme instead.
    
    {* ../../docs_src/advanced_middleware/tutorial001_py39.py hl[2,6] *}
    
    ## `TrustedHostMiddleware` { #trustedhostmiddleware }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/graph/IncidentEdgeSet.java

    abstract class IncidentEdgeSet<N> extends AbstractSet<EndpointPair<N>> {
      final N node;
      final ArchetypeGraph<N> graph;
      final EdgeType edgeType;
    
      enum EdgeType {
        INCOMING, // incoming incident edges only
        OUTGOING, // outgoing incident edges only
        BOTH // both incoming and outgoing incident edges
      }
    
      IncidentEdgeSet(ArchetypeGraph<N> graph, N node, EdgeType edgeType) {
        this.graph = graph;
        this.node = node;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 07 15:57:03 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  4. src/main/java/jcifs/dcerpc/DcerpcSecurityProvider.java

         */
        void wrap(NdrBuffer outgoing) throws DcerpcException;
    
        /**
         * Unwraps incoming DCERPC message data after security processing
         * @param incoming the buffer containing data to be unwrapped
         * @throws DcerpcException if the unwrapping operation fails
         */
        void unwrap(NdrBuffer incoming) throws DcerpcException;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  5. 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)
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri May 16 18:26:52 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcSecurityProvider.java

         */
        void wrap(NdrBuffer outgoing) throws DcerpcException;
    
        /**
         * Unwraps incoming DCERPC message data after security processing
         * @param incoming the buffer containing data to be unwrapped
         * @throws DcerpcException if the unwrapping operation fails
         */
        void unwrap(NdrBuffer incoming) throws DcerpcException;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  7. internal/grid/manager.go

    type ManagerOptions struct {
    	Local        string        // Local host name.
    	Hosts        []string      // All hosts, including local in the grid.
    	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.
    	RoutePath    string
    	TraceTo      *pubsub.PubSub[madmin.TraceInfo, madmin.TraceType]
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Nov 12 20:41:41 GMT 2024
    - 10.8K bytes
    - Click Count (0)
  8. cmd/grid.go

    			}),
    		Local:        local,
    		Hosts:        hosts,
    		AuthToken:    validateStorageRequestToken,
    		AuthFn:       newCachedAuthToken(),
    		BlockConnect: globalGridStart,
    		// Record incoming and outgoing bytes.
    		Incoming:  globalConnStats.incInternodeInputBytes,
    		Outgoing:  globalConnStats.incInternodeOutputBytes,
    		TraceTo:   globalTrace,
    		RoutePath: grid.RoutePath,
    	})
    	if err != nil {
    		return err
    	}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri May 16 14:27:42 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  9. 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.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Jul 29 18:10:04 GMT 2024
    - 3.9K bytes
    - Click Count (0)
  10. .github/workflows/contributor-pr.yml

            with:
              distribution: temurin
              java-version: 17
          - uses: actions/download-artifact@v7
            with:
              name: build-receipt.properties
              path: incoming-distributions/build-receipt.properties
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v5
            with:
              cache-read-only: ${{ github.ref != 'refs/heads/master' }}
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Sun Dec 14 14:03:48 GMT 2025
    - 5K bytes
    - Click Count (0)
Back to Top