Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for Mathis (0.31 sec)

  1. pilot/pkg/networking/core/networkfilter_test.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. istioctl/pkg/dashboard/dashboard.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. pkg/config/xds/filter_types.gen.go

    //go:build !agent
    // +build !agent
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. operator/pkg/translate/translate_value.go

    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/operator/pkg/version"
    	oversion "istio.io/istio/operator/version"
    )
    
    // ReverseTranslator is a set of mappings to translate between values.yaml and API paths, charts, k8s paths.
    type ReverseTranslator struct {
    	Version version.MinorVersion
    	// APIMapping is Values.yaml path to API path mapping using longest prefix match. If the path is a non-leaf node,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/bugreport/bugreport.go

    	log.Infof("Cluster resource tree:\n\n%s\n\n", resources)
    	paths, err := filter.GetMatchingPaths(config, resources)
    	if err != nil {
    		return err
    	}
    
    	common.LogAndPrintf("\n\nFetching logs for the following containers:\n\n%s\n", strings.Join(paths, "\n"))
    
    	gatherInfo(runner, config, resources, paths)
    	if len(gErrors) != 0 {
    		log.Error(gErrors.ToError())
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. pkg/test/framework/suite.go

    func deriveSuiteName(caller string) string {
    	d := filepath.Dir(caller)
    	// We will trim out paths preceding some well known paths. This should handle anything in istio or docs repo,
    	// as well as special case tests/integration. The end result is a test under ./tests/integration/pilot/ingress
    	// will become pilot_ingress
    	// Note: if this fails to trim, we end up with "ugly" suite names but otherwise no real impact.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pilot/pkg/security/model/authentication_test.go

    								ResourceApiVersion:  core.ApiVersion_V3,
    								InitialFetchTimeout: durationpb.New(time.Second * 0),
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "ISTIO_MUTUAL with custom cert paths from proxy node metadata",
    			node: &model.Proxy{
    				Metadata: &model.NodeMetadata{
    					TLSServerCertChain: "/custom/path/to/cert-chain.pem",
    					TLSServerKey:       "/custom-key.pem",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	}
    	warningMessages = append(warningMessages, deprecatedWarningMessages...)
    	return validationErrors, strings.Join(warningMessages, "\n")
    }
    
    // Converts from struct paths to helm paths
    // Global.Proxy.AccessLogFormat -> global.proxy.accessLogFormat
    func firstCharsToLower(s string) string {
    	// Use a closure here to remember state.
    	// Hackish but effective. Depends on Map scanning in order and calling
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/model/model.go

    	if action == rbacpb.RBAC_ALLOW {
    		// Return the error as-is for allow policy. This will make all rules in the current permission ignored, effectively
    		// result in a smaller allow policy (i.e. less likely to allow a request).
    		return err
    	}
    
    	// Ignore the error for a deny or audit policy. This will make the current rule ignored and continue the generation of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top