Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for evalTo (0.14 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    	// compile all expressions once in validation and save the results to be used for eval later
    	cm, fieldErr := apiservervalidation.ValidateAndCompileMatchConditions(matchConditions)
    	if err := fieldErr.ToAggregate(); err != nil {
    		return nil, err
    	}
    	if cm != nil {
    		cm.AuthorizerType = "Webhook"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    	ast, issues := env.Compile(expr)
    	if len(issues.Errors()) > 0 {
    		return false, issues.Err()
    	}
    	prog, err := env.Program(ast)
    	if err != nil {
    		return false, err
    	}
    	result, _, err := prog.Eval(activation)
    	if err != nil {
    		return false, err
    	}
    	return result.Value() == true, nil
    }
    
    type fakeAuthorizer struct {
    	decision authorizer.Decision
    	reason   string
    	err      error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build.go

    	} else {
    		text = "// +build " + text
    	}
    	x, err := constraint.Parse(text)
    	if err != nil {
    		return false
    	}
    	return ctxt.eval(x, allTags)
    }
    
    func (ctxt *Context) eval(x constraint.Expr, allTags map[string]bool) bool {
    	return x.Eval(func(tag string) bool { return ctxt.matchTag(tag, allTags) })
    }
    
    // matchTag reports whether the name is one of:
    //
    //	cgo (if cgo is enabled)
    //	$GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. tests/integration/security/sds_ingress/util/util.go

        hosts:
        - "{{.Host}}"
    `
    
    func SetupConfig(ctx framework.TestContext, ns namespace.Instance, config ...TestConfig) {
    	b := ctx.ConfigIstio().New()
    	for _, c := range config {
    		b.Eval(ns.Name(), c, vsTemplate)
    		b.Eval(ns.Name(), c, gwTemplate)
    	}
    	b.ApplyOrFail(ctx)
    }
    
    // RunTestMultiMtlsGateways deploys multiple mTLS gateways with SDS enabled, and creates kubernetes secret that stores
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. pkg/collateral/control.go

    		eval echo "$1"
    		return 0
    	fi
    	OLD_IFS="$IFS"
    	IFS=$'\n'
    	if [ "$1" = "-d" ]; then
    		shift
    		RET=( $(compgen -d) )
    	else
    		RET=( $(compgen -f) )
    	fi
    	IFS="$OLD_IFS"
    	IFS="," __istio_debug "RET=${RET[@]} len=${#RET[@]}"
    	for w in ${RET[@]}; do
    		if [[ ! "${w}" = "${cur}"* ]]; then
    			continue
    		fi
    		if eval "[[ \"\${w}\" = *.$1 || -d \"\${w}\" ]]"; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    ame|bash|bc|bg|builtin|bzip2|cal|cat|cd|cfdisk|chgrp|chmod|chown|chroot|chkconfig|cksum|clear|cmp|comm|command|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|du|egrep|eject|enable|env|ethtool|eval|exec|expand|expect|export|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|getopts|git|grep|groupadd|groupdel|groupmod|groups|gzip|hash|head|help|hg|history|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            targetScope: ClassLoaderScope,
            baseScope: ClassLoaderScope,
            topLevelScript: Boolean,
            options: EvalOptions
        ) {
            withOptions(options) {
                interpreter.eval(
                    target,
                    scriptSource,
                    scriptSourceHasher.hash(scriptSource),
                    scriptHandler,
                    targetScope,
                    baseScope,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. Makefile.core.mk

    	GOOS=linux GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $(TARGET_OUT_LINUX)/ -tags=$(2) $(1)
    endif
    endef
    
    $(foreach bin,$(STANDARD_BINARIES),$(eval $(call build-linux,$(bin),$(STANDARD_TAGS))))
    $(foreach bin,$(LINUX_AGENT_BINARIES),$(eval $(call build-linux,$(bin),$(AGENT_TAGS))))
    
    # Create helper targets for each binary, like "pilot-discovery"
    # As an optimization, these still build everything
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. tests/integration/ambient/waypoint_test.go

            add:
            - name: traversed-waypoint
              value: {{.Service}}-gateway
        backendRefs:
        - name: {{.Service}}
          port: {{.Port}}
          `
    
    			t.ConfigKube().
    				New().
    				Eval(
    					apps.Namespace.Name(),
    					map[string]any{
    						"Service":   Captured,
    						"Namespace": apps.Namespace.Name(),
    						"Port":      apps.Captured.PortForName("http").ServicePort,
    					},
    					config).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tests/integration/telemetry/policy/helper_test.go

    	args := map[string]string{"ImportNamespace": serviceNamespace.Name(), "TrafficPolicyMode": tPolicy.String()}
    	if err := t.ConfigIstio().Eval(appsNamespace.Name(), args, SidecarScope).Apply(); err != nil {
    		t.Errorf("failed to apply service entries: %v", err)
    	}
    }
    
    func mustReadCert(t framework.TestContext, f string) string {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top