Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for subfolder (0.39 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r27/ToolingApiEclipseLinkedResourcesCrossVersionSpec.groovy

            def projectBsrcFolder = file('subprojectB/src')
            def srcRootFolder1 = file('src-root')
            def srcRootFolder2 = file('src')
            def srcFolder = file('subprojectA/src')
            projectBsrcSiblingFolder.mkdirs()
            projectBsrcFolder.mkdirs()
            srcFolder.mkdirs()
            srcRootFolder1.mkdirs()
            srcRootFolder2.mkdirs()
            file('subprojectA/build.gradle').text = """
    sourceSets {
        main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. ci/README.md

    and deploy TensorFlow. This folder is typically used by continuous integration
    (CI) tools to build and test TensorFlow whenever there is a change to the
    code. This folder is broken into subfolders that represent the level of support
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
  3. pkg/config/validation/envoyfilter/envoyfilter_test.go

    										Name:      "random",
    										SubFilter: &networking.EnvoyFilter_ListenerMatch_SubFilterMatch{},
    									},
    								},
    							},
    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_REMOVE,
    					},
    				},
    			},
    		}, error: "Envoy filter: subfilter match can be used with applyTo HTTP_FILTER only"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pkg/config/validation/envoyfilter/envoyfilter.go

    								errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: subfilter match requires filter match with %s", // nolint: stylecheck
    									wellknown.HTTPConnectionManager))
    								continue
    							}
    							if listenerMatch.FilterChain.Filter.SubFilter.Name == "" {
    								errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: subfilter match has no name to match on")) // nolint: stylecheck
    								continue
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    						PortNumber: 80,
    						FilterChain: &networking.EnvoyFilter_ListenerMatch_FilterChainMatch{
    							Filter: &networking.EnvoyFilter_ListenerMatch_FilterMatch{
    								Name:      wellknown.HTTPConnectionManager,
    								SubFilter: &networking.EnvoyFilter_ListenerMatch_SubFilterMatch{Name: "http-filter-to-be-removed-then-add"},
    							},
    						},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-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: INSERT_FIRST
          value: # lua filter specification
           name: envoy.lua
           typed_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

        public static boolean isModuleSource(boolean inferModulePath, Iterable<File> sourcesRoots) {
            if (!inferModulePath) {
                return false;
            }
            for (File srcFolder : sourcesRoots) {
                if (isModuleSourceFolder(srcFolder)) {
                    return true;
                }
            }
            return false;
        }
    
        private static boolean isModuleSourceFolder(File folder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top