Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 139 for negation_0 (0.27 sec)

  1. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/SrcDistributionIntegrationSpec.groovy

            contentsDir.eachFileRecurse {
                if (it.absolutePath.endsWith(generatedSourceName)) {
                    foundGeneratedSources = true
                }
            }
    
            then:
            // TODO: remove negation when fixed
            !foundGeneratedSources
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/internal/zstd/xxhash.go

    func (xh *xxhash64) reset() {
    	xh.len = 0
    
    	// Separate addition for awkward constant overflow.
    	xh.v[0] = xxhPrime64c1
    	xh.v[0] += xxhPrime64c2
    
    	xh.v[1] = xxhPrime64c2
    	xh.v[2] = 0
    
    	// Separate negation for awkward constant overflow.
    	xh.v[3] = xxhPrime64c1
    	xh.v[3] = -xh.v[3]
    
    	for i := range xh.buf {
    		xh.buf[i] = 0
    	}
    	xh.cnt = 0
    }
    
    // update adds a buffer to the has.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	NonGreedy                       // make repetition operators default to non-greedy
    	PerlX                           // allow Perl extensions
    	UnicodeGroups                   // allow \p{Han}, \P{Han} for Unicode group and negation
    	WasDollar                       // regexp OpEndText was $, not \z
    	Simple                          // regexp contains no counted repetition
    
    	MatchNL = ClassNL | DotNL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/log/slog/level.go

    // Since a larger level means a more severe event, a logger that accepts events
    // with smaller (or more negative) level means a more verbose logger. Logger
    // verbosity is thus the negation of event severity, and the default verbosity
    // of 0 accepts all events at least as severe as INFO.
    //
    // Third, we wanted some room between levels to accommodate schemes with named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. android/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: Mon Jan 24 17:47:51 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/go/build/constraint/expr_test.go

    	{"x && ||", &SyntaxError{Offset: 5, Err: "unexpected token ||"}},
    	{"x && !", &SyntaxError{Offset: 6, Err: "unexpected end of expression"}},
    	{"x && !!", &SyntaxError{Offset: 6, Err: "double negation not allowed"}},
    	{"x !", &SyntaxError{Offset: 2, Err: "unexpected token !"}},
    	{"x && (y", &SyntaxError{Offset: 5, Err: "missing close paren"}},
    }
    
    func TestParseError(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 18 22:36:55 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top