Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for withoutHeaders (0.43 sec)

  1. releasenotes/notes/49537.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 49537
    releaseNotes:
      - |
        **Fixed** an issue that when using `withoutHeaders` to configure route matching rules in VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:10:16 UTC 2024
    - 329 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

            succeeds ":stripSymbolsDebug"
    
            then:
            executedAndNotSkipped":stripSymbolsDebug"
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(withoutHeaders(app.original))
            binary("build/stripped").assertDoesNotHaveDebugSymbolsFor(withoutHeaders(app.original))
        }
    
        @ToBeFixedForConfigurationCache
        def "strip is skipped when there are no changes"() {
            when:
            succeeds ":stripSymbolsDebug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/ExtractSymbolsIntegrationTest.groovy

            then:
            executedAndNotSkipped":extractSymbolsDebug"
            fixture("build/symbols").assertHasDebugSymbolsFor(withoutHeaders(app.alternate))
        }
    
        NativeBinaryFixture fixture(String path) {
            return new NativeBinaryFixture(file(path), toolChain)
        }
    
        List<String> withoutHeaders(SourceElement sourceElement) {
            return sourceElement.sourceFileNames.findAll { !it.endsWith(".h") }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. pkg/config/validation/virtualservice.go

    			}
    
    			for name, header := range match.WithoutHeaders {
    				errs = appendErrors(errs, ValidateHTTPHeaderNameOrJwtClaimRoute(name))
    				// `*` is NOT a RE2 style regex, it will be translated as present_match.
    				if header != nil && header.GetRegex() != "*" {
    					errs = appendErrors(errs, validateStringMatch(header, "withoutHeaders"))
    				}
    			}
    
    			// uri allows empty prefix match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top