Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 190 for evalTo (0.11 sec)

  1. src/crypto/internal/nistec/fiat/p521_fiat64.go

    	*out1 = x2
    }
    
    // p521Mul 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 p521Mul(out1 *p521MontgomeryDomainFieldElement, arg1 *p521MontgomeryDomainFieldElement, arg2 *p521MontgomeryDomainFieldElement) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/index.go

    		// determine and check index
    		validIndex := false
    		eval := e
    		if kv, _ := e.(*syntax.KeyValueExpr); kv != nil {
    			if typ, i := check.index(kv.Key, length); isValid(typ) {
    				if i >= 0 {
    					index = i
    					validIndex = true
    				} else {
    					check.errorf(e, InvalidLitIndex, "index %s must be integer constant", kv.Key)
    				}
    			}
    			eval = kv.Value
    		} else if length >= 0 && index >= length {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/completion.go

    }
    
    __kubeadm_filedir() {
    	local RET OLD_IFS w qw
    
    	__kubectl_debug "_filedir $@ cur=$cur"
    	if [[ "$1" = \~* ]]; then
    		# somehow does not work. Maybe, zsh does not call this at all
    		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"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher_test.go

    				},
    				{
    					EvalResult:         celtypes.True,
    					ExpressionAccessor: &MatchCondition{},
    				},
    			},
    			shouldMatch: true,
    		},
    		{
    			name:        "test empty evals",
    			evaluations: []cel.EvaluationResult{},
    			shouldMatch: true,
    		},
    		{
    			name: "test single no match",
    			evaluations: []cel.EvaluationResult{
    				{
    					EvalResult: celtypes.False,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. gradlew

    # character that might be a shell metacharacter, then use eval to reverse
    # that process (while maintaining the separation between arguments), and wrap
    # the whole thing up as a single "set" statement.
    #
    # This will of course break if any of these variables contains a newline or
    # an unmatched quote.
    #
    
    eval "set -- $(
            printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

             */
            object ApplyBasePlugins : Instruction()
    
            /**
             * Causes the evaluation of the compiled [script] against the script host.
             */
            data class Eval(val script: ProgramSource) : Instruction()
    
            override fun toString(): String = javaClass.simpleName
        }
    
        data class PluginRequestSpec(val id: String, val version: String? = null, val apply: Boolean = true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XPathAPI.java

         *  @return An XPathEvaluationResult, which can be used to obtain a string, number, nodelist, etc, should never be null.
         *
         * @throws XPathExpressionException
         */
        public XPathEvaluationResult<?> eval(final Node contextNode, final String expression) throws XPathExpressionException {
            return xPath.evaluateExpression(expression, contextNode);
        }
    
        /**
         * Use an XPath string to select a single node.
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. internal/s3select/sql/statement.go

    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // Eval - evaluates the Select statement for the given record. It
    // applies only to non-aggregation queries.
    // The function returns whether the statement passed the WHERE clause and should be outputted.
    func (e *SelectStatement) Eval(input, output Record) (Record, error) {
    	ok, err := e.isPassingWhereClause(input)
    	if err != nil || !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 09 17:19:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. integration-tests/gradle/gradlew

    # character that might be a shell metacharacter, then use eval to reverse
    # that process (while maintaining the separation between arguments), and wrap
    # the whole thing up as a single "set" statement.
    #
    # This will of course break if any of these variables contains a newline or
    # an unmatched quote.
    #
    
    eval "set -- $(
            printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/multiplecontrolplanes/main_test.go

    	return headers.New().WithHost(header).Build()
    }
    
    func restrictUserGroups(t framework.TestContext) {
    	for _, ns := range []string{userGroup1NS.Name(), userGroup2NS.Name()} {
    		t.ConfigIstio().Eval(ns, map[string]any{
    			"Namespace": ns,
    		}, `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "usergroup-peerauth"
      namespace: {{ .Namespace }}
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top