Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 213 for chains (0.12 sec)

  1. pkg/config/constants/constants.go

    	DefaultPilotTLSCaCert              = PilotWellKnownDNSCaCertPath + "root-cert.pem"
    	DefaultPilotTLSCaCertAlternatePath = PilotWellKnownDNSCertPath + "ca.crt"
    
    	// CertChainFilename is mTLS chain file
    	CertChainFilename = "cert-chain.pem"
    	// KeyFilename is mTLS private key
    	KeyFilename = "key.pem"
    	// RootCertFilename is mTLS root cert
    	RootCertFilename = "root-cert.pem"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. tests/integration/security/pass_through_filter_chain_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    // TestPassThroughFilterChain tests the authN and authZ policy on the pass through filter chain.
    func TestPassThroughFilterChain(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			type expect struct {
    				port echo.Port
    				// Plaintext will be sent from Naked pods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		if lp.Operation == networking.EnvoyFilter_Patch_REMOVE {
    			fc.Filters = nil
    			*filterChainRemoved = true
    			// nothing more to do in other patches as we removed this filter chain
    			return
    		} else if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			merged, err := mergeTransportSocketListener(fc, lp)
    			if err != nil {
    				log.Debugf("merge of transport socket failed for listener: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. src/text/template/parse/parse_test.go

    		`{{if .X}}"true"{{else}}{{if .Y}}"false"{{end}}{{end}}`},
    	{"if else chain", "+{{if .X}}X{{else if .Y}}Y{{else if .Z}}Z{{end}}+", noError,
    		`"+"{{if .X}}"X"{{else}}{{if .Y}}"Y"{{else}}{{if .Z}}"Z"{{end}}{{end}}{{end}}"+"`},
    	{"simple range", "{{range .X}}hello{{end}}", noError,
    		`{{range .X}}"hello"{{end}}`},
    	{"chained field range", "{{range .X.Y.Z}}hello{{end}}", noError,
    		`{{range .X.Y.Z}}"hello"{{end}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

            if (getContext().isInScope(owner)) {
                return fallbackValue;
            }
            // It is possible that the downstream chain itself forms a cycle.
            // However, it should be its responsibility to be defined in terms of safe evaluation rather than us intercepting the failure here.
            return evaluate(owner, evaluation);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		ae := audit.AuditEventFrom(r.Context())
    		if ae == nil {
    			t.Error("unexpected nil audit event")
    		}
    
    		// confirm that the indirect way of setting audit annotations later in the chain also works
    		audit.AddAuditAnnotation(r.Context(), "dogs", "are okay")
    
    		if _, err := w.Write([]byte("done")); err != nil {
    			t.Errorf("failed to write response: %v", err)
    		}
    	}), c)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		return nil, nil, errCorrupt // more likely our math is wrong
    	}
    
    	// Link record into hash chain, making sure not to introduce a duplicate.
    	// We know name does not appear in the chain starting at head.
    	for {
    		next.Store(head)
    		if m.cas32(headOff, head, start) {
    			return v, nil, nil
    		}
    
    		// Check new elements in chain for duplicates.
    		old := head
    		head = m.load32(headOff)
    		for off := head; off != old; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

        def "adds model extensions"() {
            expect:
            toolChains != null
            platforms != null
            buildTypes != null
            flavors != null
        }
    
        def "does not provide a default tool chain"() {
            expect:
            realizeModelElement("toolChains", NativeToolChainRegistry).isEmpty()
        }
    
        def "adds default flavor to every binary"() {
            when:
            project.model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	assert.Equal(http.StatusOK, resp.StatusCode)
    
    	body, err = io.ReadAll(resp.Body)
    	assert.NoError(err)
    	assert.Equal(newSpec, body)
    }
    
    // TestCustomHandlerChain verifies the handler chain with custom handler chain builder functions.
    func TestCustomHandlerChain(t *testing.T) {
    	config, _ := setUp(t)
    
    	var protected, called bool
    
    	config.BuildHandlerChainFunc = func(apiHandler http.Handler, c *Config) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin.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.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"runtime/debug"
    	"strconv"
    	"time"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top