Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for subfolder (0.15 sec)

  1. src/archive/tar/writer_test.go

    			t.Fatalf("test %d, String() = %q, want %q", i, got, wantStr)
    		}
    	}
    }
    
    func TestWriterAddFS(t *testing.T) {
    	fsys := fstest.MapFS{
    		"file.go":              {Data: []byte("hello")},
    		"subfolder/another.go": {Data: []byte("world")},
    	}
    	var buf bytes.Buffer
    	tw := NewWriter(&buf)
    	if err := tw.AddFS(fsys); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/FolderBasedTest.kt

    
    fun File.withFolders(folders: FoldersDslExpression) =
        apply { FoldersDsl(this).folders() }
    
    
    class FoldersDsl(val root: File) {
    
        operator fun String.invoke(subFolders: FoldersDslExpression): File =
            (+this).withFolders(subFolders)
    
        operator fun String.unaryPlus(): File =
            canonicalFile(this).apply { mkdirs() }
    
        fun withFile(fileName: String, content: String = ""): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dtyp/ACE.java

            case 0x00:
                return "This folder only";
            case 0x03:
                return "This folder, subfolders and files";
            case 0x0B:
                return "Subfolders and files only";
            case 0x02:
                return "This folder and subfolders";
            case 0x0A:
                return "Subfolders only";
            case 0x01:
                return "This folder and files";
            case 0x09:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/envoyfilter.yaml

                subFilter:
                  name: envoy.filters.http.router
          proxy:
            proxyVersion: ^1\.19.*
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.http_connection_manager
                subFilter:
                  name: envoy.filters.http.router
          proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top