Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,120 for Booleans (0.14 sec)

  1. 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)
  2. src/encoding/json/decode.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Represents JSON data structure using native Go types: booleans, floats,
    // strings, arrays, and maps.
    
    package json
    
    import (
    	"encoding"
    	"encoding/base64"
    	"fmt"
    	"reflect"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf16"
    	"unicode/utf8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/response-model.md

    Hierbei können Sie **Typannotationen** genauso verwenden, wie Sie es bei Werten von Funktions-**Parametern** machen; verwenden Sie Pydantic-Modelle, Listen, Dicts und skalare Werte wie Nummern, Booleans, usw.
    
    === "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: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top