Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,769 for Booleans (0.34 sec)

  1. docs/en/docs/how-to/nosql-databases-couchbase.md

    You can adapt it to any other NoSQL database like:
    
    * **MongoDB**
    * **Cassandra**
    * **CouchDB**
    * **ArangoDB**
    * **ElasticSearch**, etc.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/DoubleMath.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.primitives.Booleans;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.math.BigInteger;
    import java.math.RoundingMode;
    import java.util.Iterator;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/DoubleMath.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.primitives.Booleans;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.math.BigInteger;
    import java.math.RoundingMode;
    import java.util.Iterator;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/database/sql/driver/types.go

    	// Value returns a driver Value.
    	// Value must not panic.
    	Value() (Value, error)
    }
    
    // Bool is a [ValueConverter] that converts input values to bool.
    //
    // The conversion rules are:
    //   - booleans are returned unchanged
    //   - for integer types,
    //     1 is true
    //     0 is false,
    //     other integers are an error
    //   - for strings and []byte, same rules as [strconv.ParseBool]
    //   - all other types are an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go

    	}{
    		// Invalid syntaxes
    		{
    			In:  `x`,
    			Err: true,
    		},
    		{
    			In:  ``,
    			Err: true,
    		},
    
    		// Null
    		{
    			In:   `null`,
    			Data: nil,
    			Out:  `null`,
    		},
    		// Booleans
    		{
    			In:   `true`,
    			Data: true,
    			Out:  `true`,
    		},
    		{
    			In:   `false`,
    			Data: false,
    			Out:  `false`,
    		},
    
    		// Integers
    		{
    			In:   `0`,
    			Data: int64(0),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. test/cmp.go

    		istrue(z != iy)
    		isfalse(x != iz)
    		isfalse(z != ix)
    
    		istrue(ix != y)
    		istrue(iy != x)
    		istrue(iy != z)
    		istrue(iz != y)
    		isfalse(ix != z)
    		isfalse(iz != x)
    	}
    
    	// named booleans
    	{
    		type mybool bool
    		var b mybool
    
    		type T struct{ data [20]byte }
    		var x, y T
    		b = x == y
    		istrue(x == y)
    		istrue(bool(b))
    
    		m := make(map[string][10]interface{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 26 03:38:21 UTC 2015
    - 7.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  0,
    		},
    		{
    			name:             "map of booleans with all",
    			schemaGenerator:  genMapWithRule("boolean", "self.all(x, true)"),
    			expectedCalcCost: 943718,
    			setMaxElements:   100,
    			expectedSetCost:  302,
    		},
    		{
    			name:             "map of booleans with has",
    			schemaGenerator:  genMapWithRule("boolean", "has(self.x)"),
    			expectedCalcCost: 0,
    			setMaxElements:   1024,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/fmt/example_test.go

    	// a particular type, such as integers or strings. We start each format
    	// string with %v to show the default output and follow that with one or
    	// more custom formats.
    
    	// Booleans print as "true" or "false" with %v or %t.
    	truth := true
    	fmt.Printf("%v %t\n", truth, truth)
    	// Result: true true
    
    	// Integers print as decimals with %v and %d,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  9. src/encoding/json/stream.go

    }
    
    var _ Marshaler = (*RawMessage)(nil)
    var _ Unmarshaler = (*RawMessage)(nil)
    
    // A Token holds a value of one of these types:
    //
    //   - [Delim], for the four JSON delimiters [ ] { }
    //   - bool, for JSON booleans
    //   - float64, for JSON numbers
    //   - [Number], for JSON numbers
    //   - string, for JSON string literals
    //   - nil, for JSON null
    type Token any
    
    const (
    	tokenTopValue = iota
    	tokenArrayStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. src/encoding/json/encode.go

    // but mimics a similar, necessary exception in the behavior of
    // [Unmarshaler.UnmarshalJSON].
    //
    // Otherwise, Marshal uses the following type-dependent default encodings:
    //
    // Boolean values encode as JSON booleans.
    //
    // Floating point, integer, and [Number] values encode as JSON numbers.
    // NaN and +/-Inf values will return an [UnsupportedValueError].
    //
    // String values encode as JSON strings coerced to valid UTF-8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
Back to top