Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 162 for evalTo (0.15 sec)

  1. src/cmd/go/internal/imports/build.go

    	case *constraint.NotExpr:
    		return !eval(x.X, tags, !prefer)
    	case *constraint.AndExpr:
    		return eval(x.X, tags, prefer) && eval(x.Y, tags, prefer)
    	case *constraint.OrExpr:
    		return eval(x.X, tags, prefer) || eval(x.Y, tags, prefer)
    	}
    	panic(fmt.Sprintf("unexpected constraint expression %T", x))
    }
    
    // Eval is like
    //
    //	x.Eval(func(tag string) bool { return matchTag(tag, tags) })
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractDslTest.kt

    class DslTestFixture(private val testDirectory: File) {
    
        val kotlinDslEvalBaseCacheDir: File by lazy {
            testDirectory.resolve("kotlin-dsl-eval-cache").apply {
                mkdirs()
            }
        }
    
        val kotlinDslEvalBaseTempDir: File by lazy {
            testDirectory.resolve("kotlin-dsl-eval-temp").apply {
                mkdirs()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. tools/packaging/packaging.mk

    ISTIO_FILES:=
    $(foreach DEP,$(ISTIO_DEB_DEPS),\
            $(eval ${TARGET_OUT_LINUX}/release/istio.deb: $(TARGET_OUT_LINUX)/$(DEP)) \
            $(eval ISTIO_FILES+=$(TARGET_OUT_LINUX)/$(DEP)=$(ISTIO_DEB_BIN)/$(DEP)) )
    
    SIDECAR_DEB_DEPS:=envoy pilot-agent
    SIDECAR_FILES:=
    $(foreach DEP,$(SIDECAR_DEB_DEPS),\
            $(eval ${TARGET_OUT_LINUX}/release/istio-sidecar.deb: $(TARGET_OUT_LINUX)/$(DEP)) \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p224_fiat64.go

    	*out1 = x2
    }
    
    // p224Mul multiplies two field elements in the Montgomery domain.
    //
    // Preconditions:
    //
    //	0 ≤ eval arg1 < m
    //	0 ≤ eval arg2 < m
    //
    // Postconditions:
    //
    //	eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m
    //	0 ≤ eval out1 < m
    func p224Mul(out1 *p224MontgomeryDomainFieldElement, arg1 *p224MontgomeryDomainFieldElement, arg2 *p224MontgomeryDomainFieldElement) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluator.kt

                            CloseTargetScope,
                            ApplyBasePlugins,
                            Eval(program.source)
                        )
                    }
                }
    
                else -> {
                    Static(
                        defaultStageTransition(),
                        Eval(program.source)
                    )
                }
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/authentication/cel/mapper.go

    	return m.eval(ctx, map[string]interface{}{claimsVarName: claims.Object})
    }
    
    // EvalUser evaluates the given user expressions and returns a list of EvaluationResult.
    func (m *mapper) EvalUser(ctx context.Context, userInfo *unstructured.Unstructured) ([]EvaluationResult, error) {
    	return m.eval(ctx, map[string]interface{}{userVarName: userInfo.Object})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 20:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/scalar_fiat.go

    	*out1 = x2
    }
    
    // fiatScalarMul multiplies two field elements in the Montgomery domain.
    //
    // Preconditions:
    //
    //	0 ≤ eval arg1 < m
    //	0 ≤ eval arg2 < m
    //
    // Postconditions:
    //
    //	eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m
    //	0 ≤ eval out1 < m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue9604b.go

    }
    
    type unop struct {
    	name string
    	eval func(x *big.Int) *big.Int
    }
    
    var unops = []unop{
    	unop{"+", func(x *big.Int) *big.Int { return new(big.Int).Set(x) }},
    	unop{"-", func(x *big.Int) *big.Int { return new(big.Int).Neg(x) }},
    	unop{"^", func(x *big.Int) *big.Int { return new(big.Int).Not(x) }},
    }
    
    type shiftop struct {
    	name string
    	eval func(x *big.Int, i uint) *big.Int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. 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)
Back to top