Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for IsBool (0.25 sec)

  1. src/encoding/gob/type_test.go

    	if sint != newsint {
    		t.Errorf("second registration of []int creates new type")
    	}
    	var b []bool
    	sbool := getTypeUnlocked("", reflect.TypeOf(b))
    	if sbool == sint {
    		t.Errorf("registration of []bool creates same type as []int")
    	}
    	str := sbool.string()
    	expected := "[]bool"
    	if str != expected {
    		t.Errorf("slice printed as %q; expected %q", str, expected)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    } else if i, isFunc := v.(func(int) float64); isFunc {
    	printFunction(i)                       // type of i is func(int) float64
    } else {
    	_, isBool := v.(bool)
    	_, isString := v.(string)
    	if isBool || isString {
    		i := v                         // type of i is type of x (interface{})
    		printString("type is bool or string")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/tfl_stablehlo_pass.cc

              llvm::SmallVector<bool> vec;
              const auto& vector = value.AsTypedVector();
              for (size_t i = 0; i < vector.size(); i++) {
                vec.push_back(vector[i].AsBool());
              }
              attrs.push_back(
                  builder->getNamedAttr(key, builder->getDenseBoolArrayAttr(vec)));
              break;
            }
            case flexbuffers::FBT_VECTOR_INT: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 06:08:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/request-files.md

        ```
    
    `UploadFile` zu verwenden, hat mehrere Vorzüge gegenüber `bytes`:
    
    * Sie müssen `File()` nicht als Parameter-Defaultwert verwenden.
    * Es wird eine <abbr title='Aufgespult, Warteschlangenartig'>„Spool“</abbr>-Datei verwendet:
        * Eine Datei, die bis zu einem bestimmten Größen-Limit im Arbeitsspeicher behalten wird, und wenn das Limit überschritten wird, auf der Festplatte gespeichert wird.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                addListener(fingerprintWriter)
                // Continue with the current spool file, rather than starting a new one
                return Writing(fingerprintWriter, this.buildScopedSpoolFile, this.projectScopedSpoolFile)
            }
    
            override fun pause(): WritingState {
                return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. build/root/Makefile

        $(warning ***** starting Makefile for goal(s) "$(MAKECMDGOALS)")
        $(warning ***** $(shell date))
    else
        # If we're not debugging the Makefile, don't echo recipes.
        MAKEFLAGS += -s
    endif
    
    
    # Old-skool build tools.
    #
    # Commonly used targets (see each target for more information):
    #   all: Build code.
    #   test: Run tests.
    #   clean: Clean up.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/coderepo.go

    		return err
    	}
    
    	dl, err := r.code.ReadZip(ctx, rev, subdir, codehost.MaxZipFile)
    	if err != nil {
    		return err
    	}
    	defer dl.Close()
    	subdir = strings.Trim(subdir, "/")
    
    	// Spool to local file.
    	f, err := os.CreateTemp("", "go-codehost-")
    	if err != nil {
    		dl.Close()
    		return err
    	}
    	defer os.Remove(f.Name())
    	defer f.Close()
    	maxSize := int64(codehost.MaxZipFile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    `he's perfectly idiotic!'  And she opened the door and went in.
    
      The door led right into a large kitchen, which was full of
    smoke from one end to the other:  the Duchess was sitting on a
    three-legged stool in the middle, nursing a baby; the cook was
    leaning over the fire, stirring a large cauldron which seemed to
    be full of soup.
    
      `There's certainly too much pepper in that soup!' Alice said to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    `he's perfectly idiotic!'  And she opened the door and went in.
    
      The door led right into a large kitchen, which was full of
    smoke from one end to the other:  the Duchess was sitting on a
    three-legged stool in the middle, nursing a baby; the cook was
    leaning over the fire, stirring a large cauldron which seemed to
    be full of soup.
    
      `There's certainly too much pepper in that soup!' Alice said to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top