Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Original (0.16 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    			formatString: "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)% \n",
    			expected:     "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)% \n",
    		},
    		{
    			name:         "miss newline",
    			formatString: "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)%",
    			expected:     "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)%\n",
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    	// This includes the additional new operator RESPONSE_CODE_DETAILS and CONNECTION_TERMINATION_DETAILS that tells
    	// the reason why Envoy rejects a request.
    	EnvoyTextLogFormat = "[%START_TIME%] \"%REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)% " +
    		"%PROTOCOL%\" %RESPONSE_CODE% %RESPONSE_FLAGS% " +
    		"%RESPONSE_CODE_DETAILS% %CONNECTION_TERMINATION_DETAILS% " +
    		"\"%UPSTREAM_TRANSPORT_FAILURE_REASON%\" %BYTES_RECEIVED% %BYTES_SENT% " +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    	}
    }
    
    func genPatchBytes(oldRes, modRes runtime.Object, patchType types.PatchType) ([]byte, error) {
    	oldJSON, err := json.Marshal(oldRes)
    	if err != nil {
    		return nil, fmt.Errorf("failed marhsalling original resource: %v", err)
    	}
    	newJSON, err := json.Marshal(modRes)
    	if err != nil {
    		return nil, fmt.Errorf("failed marhsalling modified resource: %v", err)
    	}
    	switch patchType {
    	case types.JSONPatchType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    	case model.XdsDeltaResourceGenerator:
    		res, deletedRes, logdata, usedDelta, err = g.GenerateDeltas(con.proxy, req, w)
    		if features.EnableUnsafeDeltaTest {
    			fullRes, l, _ := g.Generate(con.proxy, originalW, req)
    			s.compareDiff(con, originalW, fullRes, res, deletedRes, usedDelta, req.Delta, l.Incremental)
    		}
    	case model.XdsResourceGenerator:
    		res, logdata, err = g.Generate(con.proxy, w, req)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // k8s.ParentReference in a form that can be stored in a map
    type parentKey struct {
    	Kind config.GroupVersionKind
    	// Name is the original name of the resource (eg Kubernetes Gateway name)
    	Name string
    	// Namespace is the namespace of the resource
    	Namespace string
    }
    
    type parentReference struct {
    	parentKey
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_waypoint.go

    	pre = extension.PopAppendHTTP(pre, wasm, extensions.PluginPhase_AUTHZ)
    	pre = append(pre, authzBuilder.BuildHTTP(cls)...)
    	// TODO: these feel like the wrong place to insert, but this retains backwards compatibility with the original implementation
    	post = extension.PopAppendHTTP(post, wasm, extensions.PluginPhase_STATS)
    	post = extension.PopAppendHTTP(post, wasm, extensions.PluginPhase_UNSPECIFIED_PHASE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ### Features
    
    * ⚡ Update `create_cloned_field` to use a global cache and improve startup performance. PR [#4645](https://github.com/tiangolo/fastapi/pull/4645) by [@madkinsz](https://github.com/madkinsz) and previous original PR by [@huonw](https://github.com/huonw).
    
    ### Docs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Name:  "init1",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init2",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init3",
    			Image: "bar-image",
    		},
    	}
    	// Replace the original statuses of the containers with those for the init
    	// containers.
    	status.ContainerStatuses = []*kubecontainer.Status{
    		{
    			ID:   kubecontainer.ContainerID{ID: "initid1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		if !ok {
    			// In fact, we could also apply Waiting state here, but it is less informative,
    			// and the container will be restarted soon, so we prefer the original state here.
    			// Note that with the current implementation of ShouldContainerBeRestarted the original state here
    			// could be:
    			//   * Waiting: There is no associated historical container and start failure reason record.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    				Kind:     kind,
    				KeyID:    keyID,
    				KmsCtx:   kmsCtx,
    				Checksum: checksum,
    			}
    		}
    	}
    
    	if len(fanOutEntries) > 0 {
    		// Fan-out requires no copying, and must be carried from original source
    		// https://en.wikipedia.org/wiki/Copy_protection so the incoming stream
    		// is always going to be in-memory as we cannot re-read from what we
    		// wrote to disk - since that amounts to "copying" from a "copy"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top