Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for evalTo (0.16 sec)

  1. cmd/testdata/undeleteable-object.tgz

    ¢IDÄ ¤DDirÄ Ti²)ˆúERž •†rX æ¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistœ ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ ªPartASizes‘Ñ ¤SizeÑ ¥MTimeÓ É žùç°§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¤etagÙ 14a1119d5fe668d77000¬content-type¸application/octet-stream¡v Î@<ÉD ¤nullÄ7ÇZß ã?øO¼¡*gý V‰}z† Ír­!ù¬· 0Âéÿ S e ÚòP9WËpè‚ Jó±% multisitea/data/disterasure/xl12/bucket/2/xl.meta XL2 Æ i Ä$•Ä Ó É ¥— HÄ ABGJ Å =ƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ¹Ü±Ÿ>!HÈ’¹Ž¦iÄ ÷¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

        }
    
        @Test
        fun `Static(Eval(buildscript)) reports script exception back to host`() {
    
            val fragment = fragment(
                "buildscript",
                "throw IllegalStateException(\"BOOM!\")"
            )
    
            val programHost = mock<ExecutableProgram.Host>()
            val scriptHost = scriptHostWith(mock<Settings>())
            withExecutableProgramFor(Static(Eval(fragment.source))) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authorization/cel/matcher.go

    	// These are optional fields which can be populated if metrics reporting is desired
    	Metrics        MatcherMetrics
    	AuthorizerType string
    	AuthorizerName string
    }
    
    // eval evaluates the given SubjectAccessReview against all cel matchCondition expression
    func (c *CELMatcher) Eval(ctx context.Context, r *authorizationv1.SubjectAccessReview) (bool, error) {
    	var evalErrors []error
    
    	metrics := c.Metrics
    	if metrics == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/go/types/eval_test.go

    	gotTv, err := Eval(fset, pkg, pos, expr)
    	if err != nil {
    		t.Errorf("Eval(%q) failed: %s", expr, err)
    		return
    	}
    	if gotTv.Type == nil {
    		t.Errorf("Eval(%q) got nil type but no error", expr)
    		return
    	}
    
    	// compare types
    	if typ != nil {
    		// we have a type, check identity
    		if !Identical(gotTv.Type, typ) {
    			t.Errorf("Eval(%q) got type %s, want %s", expr, gotTv.Type, typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy_test.go

    	}
    	prog, err := env.Program(ast)
    	if err != nil {
    		return nil, fmt.Errorf("cannot create program: %w", err)
    	}
    	v, _, err := prog.Eval(activation)
    	if err != nil {
    		return nil, fmt.Errorf("cannot eval program: %w", err)
    	}
    	return v, nil
    }
    
    func buildTestEnv() (*cel.Env, *apiservercel.DeclType, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tests/integration/security/ecc_signature_algorithm/mtls_strict_test.go

    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			ns := apps.EchoNamespace.Namespace.Name()
    			args := map[string]string{"AppNamespace": ns}
    			t.ConfigIstio().Eval(ns, args, PeerAuthenticationConfig).ApplyOrFail(t, apply.Wait)
    			t.ConfigIstio().Eval(ns, args, DestinationRuleConfigIstioMutual).ApplyOrFail(t, apply.Wait)
    
    			client := apps.EchoNamespace.A[0]
    			server := apps.EchoNamespace.B[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/test/framework/config.go

    	}
    }
    
    func (c *configFactory) YAML(ns string, yamlText ...string) config.Plan {
    	return c.New().YAML(ns, yamlText...)
    }
    
    func (c *configFactory) Eval(ns string, args any, yamlTemplates ...string) config.Plan {
    	return c.New().Eval(ns, args, yamlTemplates...)
    }
    
    func (c *configFactory) File(ns string, filePaths ...string) config.Plan {
    	return c.New().File(ns, filePaths...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle.go

    	StorageClass            string
    }
    
    // Eval returns the lifecycle event applicable now.
    func (lc Lifecycle) Eval(obj ObjectOpts) Event {
    	return lc.eval(obj, time.Now().UTC())
    }
    
    // eval returns the lifecycle event applicable at the given now. If now is the
    // zero value of time.Time, it returns the upcoming lifecycle event.
    func (lc Lifecycle) eval(obj ObjectOpts, now time.Time) Event {
    	var events []Event
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. tests/integration/helm/install_test.go

    			expectedErrorPrefix := `%s "sample" is forbidden: ValidatingAdmissionPolicy 'stable-channel-default-policy.istio.io' ` +
    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    			err := t.ConfigIstio().Eval("default", nil, sampleEnvoyFilter).Apply()
    			if err == nil {
    				t.Errorf("Did not receive an error while applying sample EnvoyFilter with stable admission policy")
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    ¹ôc â NÄ ó7 Å Mƒ¤Type ¥V2ObjÞ ¢IDÄ 7 ›ÅK ¿÷]Œðœ¯ ¤DDirÄ øë ÖzD'¨E<‹ÞÆ-ئEcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDist” ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ äªPartASizes‘Ñ ä¤SizeÑ ä¥MTimeÓ ¹ôc â N§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¬content-type¸application/octet-stream¤etagÙ 9fe7a344ef4227d3e537¡vÎeçnÐÄ$•Ä sÉöQð#Ef° ÌS Û|âÓ ¹ôb Îf­Ä ñ.È´ Å Mƒ¤Type ¥V2ObjÞ ¢IDÄ sÉöQð#Ef° ÌS Û|â¤DDirÄ #" ‘³sF"¥ URÄ,C ¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDist” ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top