Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 695 for Binary1 (0.13 sec)

  1. src/unicode/letter_test.go

    var calibrate = flag.Bool("calibrate", false, "compute crossover for linear vs. binary search")
    
    func TestCalibrate(t *testing.T) {
    	if !*calibrate {
    		return
    	}
    
    	if runtime.GOARCH == "amd64" {
    		fmt.Printf("warning: running calibration on %s\n", runtime.GOARCH)
    	}
    
    	// Find the point where binary search wins by more than 10%.
    	// The 10% bias gives linear search an edge when they're close,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. README.md

    **Libtensorflow Windows GPU** | Status Temporarily Unavailable                                                                                                                                                   | [Nightly Binary](https://storage.googleapis.com...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    [[sec:types_of_plugins]]
    == Types of plugins
    
    Plugins can be implemented as *binary plugins*, *precompiled script plugins*, or *script plugins*:
    
    Binary Plugins :: Binary plugins are compiled plugins typically written in Java or Kotlin DSL that are packaged as JAR files.
    They are applied to a project using the `plugins {}` block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/crypto/x509/oid_test.go

    			continue
    		}
    
    		binary, err := o.MarshalBinary()
    		if err != nil {
    			t.Errorf("(%#v).MarshalBinary() = %v; want = nil", o, err)
    		}
    
    		var o3 OID
    		if err := o3.UnmarshalBinary(binary); err != nil {
    			t.Errorf("(*OID).UnmarshalBinary(%v) = %v; want = nil", binary, err)
    		}
    
    		if !o3.Equal(tt.out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    			case LDRH_EQ, LDRSH_EQ:
    				if _, err := text.ReadAt(buf[:2], int64(addr)); err != nil {
    					break
    				}
    				args[1] = fmt.Sprintf("$%#x", binary.LittleEndian.Uint16(buf))
    
    			case LDR_EQ:
    				if _, err := text.ReadAt(buf[:4], int64(addr)); err != nil {
    					break
    				}
    				x := binary.LittleEndian.Uint32(buf)
    				if s, base := symname(uint64(x)); s != "" && uint64(x) == base {
    					args[1] = fmt.Sprintf("$%s(SB)", s)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py

                        "properties": {
                            "file": {"title": "File", "type": "string", "format": "binary"},
                            "fileb": {
                                "title": "Fileb",
                                "type": "string",
                                "format": "binary",
                            },
                            "token": {"title": "Token", "type": "string"},
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an_py39.py

                        "properties": {
                            "file": {"title": "File", "type": "string", "format": "binary"},
                            "fileb": {
                                "title": "Fileb",
                                "type": "string",
                                "format": "binary",
                            },
                            "token": {"title": "Token", "type": "string"},
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/encoding/binary/binary_test.go

    		t.Run(enc.name, func(t *testing.T) {
    			_, err := enc.fn(LittleEndian, &person)
    			if err == nil {
    				t.Fatalf("binary.%s: unexpected success as size of type *binary.Person is not fixed", enc.name)
    			}
    			errs := fmt.Sprintf("binary.%s: some values are not fixed-sized in type *binary.Person", enc.name)
    			if err.Error() != errs {
    				t.Fatalf("got %q, want %q", err, errs)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. Makefile.core.mk

    # Create targets for TARGET_OUT_LINUX/binary
    # There are two use cases here:
    # * Building all docker images (generally in CI). In this case we want to build everything at once, so they share work
    # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone
    BUILD_ALL ?= true
    define build-linux
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. api/go1.19.txt

    pkg encoding/binary, func AppendUvarint([]uint8, uint64) []uint8 #51644
    pkg encoding/binary, func AppendVarint([]uint8, int64) []uint8 #51644
    pkg encoding/binary, type AppendByteOrder interface { AppendUint16, AppendUint32, AppendUint64, String } #50601
    pkg encoding/binary, type AppendByteOrder interface, AppendUint16([]uint8, uint16) []uint8 #50601
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
Back to top