Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,075 for Booleans (0.19 sec)

  1. docs/en/docs/tutorial/response-model.md

    You can use **type annotations** the same way you would for input data in function **parameters**, you can use Pydantic models, lists, dictionaries, scalar values like integers, booleans, etc.
    
    === "Python 3.10+"
    
        ```Python hl_lines="16  21"
        {!> ../../../docs_src/response_model/tutorial001_01_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="18  23"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. internal/s3select/sql/value.go

    	}
    }
    
    // Value comparison functions: we do not expose them outside the
    // module. Logical operators "<", ">", ">=", "<=" work on strings and
    // numbers. Equality operators "=", "!=" work on strings,
    // numbers and booleans.
    
    // Supported comparison operators
    const (
    	opLt    = "<"
    	opLte   = "<="
    	opGt    = ">"
    	opGte   = ">="
    	opEq    = "="
    	opIneq  = "!="
    	opIs    = "IS"
    	opIsNot = "ISNOT"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      // Optional input are indicated by -1.
      inputs:[int];
      outputs:[int];
    
      builtin_options:BuiltinOptions;
      custom_options:[ubyte];
      custom_options_format:CustomOptionsFormat;
    
      // A list of booleans indicating the input tensors which are being mutated by
      // this operator.(e.g. used by RNN and LSTM).
      // For example, if the "inputs" array refers to 5 tensors and the second and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

         * to any service performing a transition, then we can fail in the ServiceManager constructor
         * rather than in a Service.Listener callback.
         */
        @GuardedBy("monitor")
        boolean ready;
    
        @GuardedBy("monitor")
        boolean transitioned;
    
        final int numberOfServices;
    
        /**
         * Controls how long to wait for all the services to either become healthy or reach a state from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ServiceManager.java

         * to any service performing a transition, then we can fail in the ServiceManager constructor
         * rather than in a Service.Listener callback.
         */
        @GuardedBy("monitor")
        boolean ready;
    
        @GuardedBy("monitor")
        boolean transitioned;
    
        final int numberOfServices;
    
        /**
         * Controls how long to wait for all the services to either become healthy or reach a state from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/fmt.go

    				continue
    			}
    			if vfi == true {
    				fmt.Fprintf(w, " %s", name)
    			} else {
    				fmt.Fprintf(w, " %s:%+v", name, vf.Interface())
    			}
    		}
    	}
    
    	// Print Node-specific booleans by looking for methods.
    	// Different v, t from above - want *Struct not Struct, for methods.
    	v = reflect.ValueOf(n)
    	t = v.Type()
    	nm := t.NumMethod()
    	for i := 0; i < nm; i++ {
    		tm := t.Method(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // Optional input are indicated by -1.
      inputs:[int];
      outputs:[int];
    
      builtin_options:BuiltinOptions;
      custom_options:[ubyte];
      custom_options_format:CustomOptionsFormat;
    
      // A list of booleans indicating the input tensors which are being mutated by
      // this operator.(e.g. used by RNN and LSTM).
      // For example, if the "inputs" array refers to 5 tensors and the second and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			expectCost: map[string]int64{
    				"self.val1 == self.val2":   5,
    				"self.val1 == b'AB'":       3,
    				"type(self.val1) == bytes": 4,
    				"size(self.val1) == 2":     4,
    			},
    		},
    		{name: "booleans",
    			obj:    objs(true, true, false, false),
    			schema: schemas(booleanType, booleanType, booleanType, booleanType),
    			expectCost: map[string]int64{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    // unary ops
    (Neg(64|32|16|8) ...) => (NEGV ...)
    (Neg(32|64)F ...) => (NEG(F|D) ...)
    
    (Com(64|32|16|8) x) => (NOR (MOVVconst [0]) x)
    
    (Sqrt ...) => (SQRTD ...)
    (Sqrt32 ...) => (SQRTF ...)
    
    // boolean ops -- booleans are represented with 0=false, 1=true
    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    (EqB x y) => (XOR (MOVVconst [1]) (XOR <typ.Bool> x y))
    (NeqB ...) => (XOR ...)
    (Not x) => (XORconst [1] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    // 32 - CLZ(x&-x - 1)
    (Ctz32 <t> x) => (SUB (MOVWconst [32]) (CLZ <t> (SUBconst <t> [1] (AND <t> x (NEG <t> x)))))
    
    // bit length
    (BitLen32 <t> x) => (SUB (MOVWconst [32]) (CLZ <t> x))
    
    // boolean ops -- booleans are represented with 0=false, 1=true
    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    (EqB x y) => (XORconst [1] (XOR <typ.Bool> x y))
    (NeqB ...) => (XOR ...)
    (Not x) => (XORconst [1] x)
    
    // constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
Back to top