Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for subfolder (0.15 sec)

  1. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: REPLACE
          value: # Lua filter specification
           name: envoy.lua
           typed_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            new Output("bin")]
        final projectDependency = [customEntries[0]]
        final jreContainer = [customEntries[1]]
        final outputLocation = [customEntries[6]]
        final srcFolder = [customEntries[3]]
    
        final allDependencies = [customEntries[0], customEntries[2], customEntries[4]]
    
        private final Classpath classpath = new Classpath(new XmlTransformer(), fileReferenceFactory)
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

        - applyTo: HTTP_FILTER
          match:
            context: SIDECAR_OUTBOUND
            listener:
              filterChain:
                filter:
                  name: "envoy.filters.network.http_connection_manager"
                  subFilter:
                    name: "envoy.filters.http.router"
          patch:
            operation: INSERT_BEFORE
            value:
              name: envoy.filters.http.ratelimit
              typed_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    == Run the application
    
    Look inside the `build` folder and you will notice the appearance of an `exe` folder.
    By convention, Gradle will place all applications in subfolders named according to the component name.
    In this case, you will find your assembled executable in `build/exe/main/debug` and it will be called `${subprojectName.raw}` (or `${subprojectName.raw}.exe` under Windows).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. tests/testdata/networking/envoyfilter-without-service/configs.yaml

      configPatches:
      - applyTo: HTTP_FILTER
        match:
          listener:
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: INSERT_BEFORE
          value: # lua filter specification
            name: envoy.lua
            typed_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. cmd/data-scanner.go

    	dataScannerCompactAtFolders      = dataScannerCompactAtChildren / 4 // Compact when this many subfolders in a single folder.
    	dataScannerForceCompactAtFolders = 250_000                          // Compact when this many subfolders in a single folder (even top level).
    	dataScannerStartDelay            = 1 * time.Minute                  // Time to wait on startup and between cycles.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/searchResults.jsp

    						styleClass="btn btn-link btn-sm">
    						<la:message key="labels.facet_label_reset" />
    					</la:link>
    				</div>
    			</c:if>
    		</c:if>
    	</aside>
    </div>
    <div class="row">
    	<nav id="subfooter" class="mx-auto">
    		<ul class="pagination">
    			<c:if test="${existPrevPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Previous"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    						styleClass="btn btn-link btn-sm">
    						<la:message key="labels.facet_label_reset" />
    					</la:link>
    				</div>
    			</c:if>
    		</c:if>
    	</aside>
    </div>
    <div class="row">
    	<nav id="subfooter" class="mx-auto">
    		<ul class="pagination">
    			<c:if test="${existPrevPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Previous"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    	match := lp.Match.GetListener().FilterChain.Filter.SubFilter
    	return match != nil
    }
    
    // We assume that the parent listener and filter chain, and network filter have already been matched
    func httpFilterMatch(filter *hcm.HttpFilter, lp *model.EnvoyFilterConfigPatchWrapper) bool {
    	if !hasHTTPFilterMatch(lp) {
    		return true
    	}
    
    	match := lp.Match.GetListener().FilterChain.Filter.SubFilter
    
    	return match.Name == filter.Name
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_OUTBOUND
          listener:
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: INSERT_BEFORE
          value:
           name: envoy.lua
           typed_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top