Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,543 for silver (0.14 sec)

  1. tools/bug-report/pkg/filter/filter.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package filter
    
    import (
    	"fmt"
    
    	"istio.io/istio/pkg/util/sets"
    	cluster2 "istio.io/istio/tools/bug-report/pkg/cluster"
    	"istio.io/istio/tools/bug-report/pkg/config"
    	"istio.io/istio/tools/bug-report/pkg/util/match"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	serviceEntryController *serviceentry.Controller
    
    	httpServer  *http.Server // debug, monitoring and readiness Server.
    	httpAddr    string
    	httpsServer *http.Server // webhooks HTTPS Server.
    	httpsAddr   string
    
    	grpcServer        *grpc.Server
    	grpcAddress       string
    	secureGrpcServer  *grpc.Server
    	secureGrpcAddress string
    
    	// monitoringMux listens on monitoringAddr(:15014).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    		server.InstallProfilingHandler(kubeCfg.EnableProfilingHandler, kubeCfg.EnableContentionProfiling)
    		server.InstallDebugFlagsHandler(kubeCfg.EnableDebugFlagsHandler)
    	} else {
    		server.InstallDebuggingDisabledHandlers()
    	}
    	return server
    }
    
    // InstallAuthFilter installs authentication filters with the restful Container.
    func (s *Server) InstallAuthFilter() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. releasenotes/notes/filter-order.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
        **Improved** the ordering of HTTP and TCP envoy filters to improve consistency
    upgradeNotes:
      - title: "Envoy filter ordering"
        content: |
          This change impacts internal implementation of how Envoy "filters" are ordered. These filters run in order to implement various functionality.
          
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package profile
    
    // Implements methods to filter samples from profiles.
    
    import "regexp"
    
    // FilterSamplesByName filters the samples in a profile and only keeps
    // samples where at least one frame matches focus but none match ignore.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/server.go

    	peerreconcilers "k8s.io/apiserver/pkg/reconcilers"
    	genericregistry "k8s.io/apiserver/pkg/registry/generic"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	"k8s.io/apiserver/pkg/server/dynamiccertificates"
    	serverstorage "k8s.io/apiserver/pkg/server/storage"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientgoinformers "k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

    spec:
      workloadSelector:
        labels:
          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-filter-duplicate.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-filter-duplicate
    spec:
      rules:
      - filters:
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-header
              value: foo
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 380 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/envoy-filter-add-operation.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-auth-2
      namespace: bookinfo
    spec:
      configPatches:
      - applyTo: ROUTE_CONFIGURATION
        match:
          context: SIDECAR_INBOUND
        patch:
          operation: ADD
          filterClass: AUTHZ # This filter will run *after* the Istio authz filter.
          value:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

    spec:
      workloadSelector:
        labels:
          app: reviews
      configPatches:
        # The first patch adds the lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top