Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for negation_0 (0.18 sec)

  1. clause/expression.go

    import (
    	"database/sql"
    	"database/sql/driver"
    	"go/ast"
    	"reflect"
    )
    
    // Expression expression interface
    type Expression interface {
    	Build(builder Builder)
    }
    
    // NegationExpressionBuilder negation expression builder
    type NegationExpressionBuilder interface {
    	NegationBuild(builder Builder)
    }
    
    // Expr raw expression
    type Expr struct {
    	SQL                string
    	Vars               []interface{}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                                addition to the negated version of the Selector (see NotSelector
                                below), the selector expression syntax itself supports
                                negation.  The two types of negation are subtly different.
                                One negates the set of matched endpoints, the other negates
                                the whole match: \n \tSelector = \"!has(my_label)\" matches
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. src/internal/fuzz/encoding_test.go

    			in: `go test fuzz v1
    int8(1234456)`,
    			reject: true,
    		},
    		{
    			desc: "multiplication in int value",
    			in: `go test fuzz v1
    int(20*5)`,
    			reject: true,
    		},
    		{
    			desc: "double negation",
    			in: `go test fuzz v1
    int(--5)`,
    			reject: true,
    		},
    		{
    			desc: "malformed bool",
    			in: `go test fuzz v1
    bool(0)`,
    			reject: true,
    		},
    		{
    			desc: "malformed byte",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. internal/s3select/sql/parser.go

    }
    
    // AndCondition represents logical conjunction of clauses
    type AndCondition struct {
    	Condition []*Condition `parser:"@@ ( \"AND\" @@ )*"`
    }
    
    // Condition represents a negation or a condition operand
    type Condition struct {
    	Operand *ConditionOperand `parser:"  @@"`
    	Not     *Condition        `parser:"| \"NOT\" @@"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // Subtraction from zero.
    (SUB  (MOVDconst [0]) x) => (NEG x)
    (SUBW (MOVDconst [0]) x) => (NEGW x)
    
    // Fold negation into subtraction.
    (NEG (SUB x y)) => (SUB y x)
    (NEG <t> s:(ADDI [val] (SUB x y))) && s.Uses == 1 && is32Bit(-val) => (ADDI [-val] (SUB <t> y x))
    
    // Double negation.
    (NEG (NEG x)) => x
    
    // Addition of zero or two constants.
    (ADDI [0] x) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ComparisonChain.java

      /**
       * Discouraged synonym for {@link #compareFalseFirst}.
       *
       * @deprecated Use {@link #compareFalseFirst}; or, if the parameters passed are being either
       *     negated or reversed, undo the negation or reversal and use {@link #compareTrueFirst}.
       * @since 19.0
       */
      @Deprecated
      public final ComparisonChain compare(Boolean left, Boolean right) {
        return compareFalseFirst(left, right);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 17:28:11 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519.go

    	XplusYsq.Add(&p.X, &p.Y)
    	XplusYsq.Square(&XplusYsq)
    
    	v.Y.Add(&YY, &XX)
    	v.Z.Subtract(&YY, &XX)
    
    	v.X.Subtract(&XplusYsq, &v.Y)
    	v.T.Subtract(&ZZ2, &v.Z)
    	return v
    }
    
    // Negation.
    
    // Negate sets v = -p, and returns v.
    func (v *Point) Negate(p *Point) *Point {
    	checkInitialized(p)
    	v.x.Negate(&p.x)
    	v.y.Set(&p.y)
    	v.z.Set(&p.z)
    	v.t.Negate(&p.t)
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/shortcircuit.go

    	if b.Kind != BlockIf {
    		return false
    	}
    	// Look for control values of the form Copy(Not(Copy(Phi(const, ...)))).
    	// Those must be the only values in the b, and they each must be used only by b.
    	// Track the negations so that we can swap successors as needed later.
    	ctl := b.Controls[0]
    	nval := 1 // the control value
    	var swap int64
    	for ctl.Uses == 1 && ctl.Block == b && (ctl.Op == OpCopy || ctl.Op == OpNot) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top