Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HttpPatch (0.08 sec)

  1. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/AlwaysFollowAndPreserveMethodRedirectStrategy.java

                return new HttpTrace(uri);
            } else if (method.equalsIgnoreCase(HttpOptions.METHOD_NAME)) {
                return new HttpOptions(uri);
            } else if (method.equalsIgnoreCase(HttpPatch.METHOD_NAME)) {
                return this.copyEntity(new HttpPatch(uri), request);
            } else {
                return new HttpGet(uri);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    					httpMatch.Uri = &networking.StringMatch{
    						MatchType: &networking.StringMatch_Prefix{Prefix: httpPath.Path},
    					}
    				default:
    					// Fallback to the legacy string matching
    					// If the httpPath.Path is a wildcard path, Uri will be nil
    					httpMatch.Uri = createFallbackStringMatch(httpPath.Path)
    				}
    			} else {
    				httpMatch.Uri = createFallbackStringMatch(httpPath.Path)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top