Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for 3xcomplex (0.23 sec)

  1. src/cmd/compile/internal/types2/stdlib_test.go

    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("skipping in short mode")
    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test", "fixedbugs"),
    		"bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore
    		"bug398.go",      // types2 doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    		"issue11362.go",  // canonical import path check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/encoding/gob/encoder_test.go

    		"u0": []uint{1},
    		"u1": []uint8{1},
    		"u2": []uint16{1},
    		"u3": []uint32{1},
    		"u4": []uint64{1},
    		"f0": []float32{1},
    		"f1": []float64{1},
    		"c0": []complex64{complex(2, -2)},
    		"c1": []complex128{complex(2, float64(-2))},
    		"us": []uintptr{0},
    		"bo": []bool{false},
    		"st": []string{"s"},
    	}
    	enc := NewEncoder(new(bytes.Buffer))
    	err := enc.Encode(m)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    // build IDs and the overall compiler binary. See cmd/dist's cmdbootstrap
    // for the actual convergence sequence.
    //
    // The “one-element cache” purpose is a bit more complex for installed
    // binaries. For a binary, like cmd/gofmt, there are two steps: compile
    // cmd/gofmt/*.go into main.a, and then link main.a into the gofmt binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/net/conf.go

    // If that is not set, we check the netgo or netcgo build tag.
    // If none of those are set, we normally prefer the go resolver by default.
    // However, if the cgo resolver is available,
    // there is a complex set of conditions for which we prefer the cgo resolver.
    //
    // Other files define the netGoBuildTag, netCgoBuildTag, and cgoAvailable
    // constants.
    
    // conf is used to determine name resolution configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Ordering.java

     *
     * <ul>
     *   <li>{@link #immutableSortedCopy}
     *   <li>{@link #isOrdered} / {@link #isStrictlyOrdered}
     *   <li>{@link #min} / {@link #max}
     * </ul>
     *
     * <h3>Understanding complex orderings</h3>
     *
     * <p>Complex chained orderings like the following example can be challenging to understand.
     *
     * <pre>{@code
     * Ordering<Foo> ordering =
     *     Ordering.natural()
     *         .nullsFirst()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. src/crypto/tls/cipher_suites.go

    //
    //     When AES hardware is available, AES-128-GCM and AES-256-GCM are faster
    //     than ChaCha20Poly1305.
    //
    //     When AES hardware is not available, AES-128-GCM is one or more of: much
    //     slower, way more complex, and less safe (because not constant time)
    //     than ChaCha20Poly1305.
    //
    //     We use this list if we think both peers have AES hardware, and
    //     cipherSuitesPreferenceOrderNoAES otherwise.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/runtime/mfinal.go

    				// the register case, we still need the spill slots.
    				// TODO: revisit if we remove spill slots.
    				//
    				// Unfortunately because we can have an arbitrary
    				// amount of returns and it would be complex to try and
    				// figure out how many of those can get passed in registers,
    				// just conservatively assume none of them do.
    				framesz := unsafe.Sizeof((any)(nil)) + f.nret
    				if framecap < framesz {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    You can use simple tools like `htop` to see the CPU and RAM used in your server or the amount used by each process. Or you can use more complex monitoring tools, which may be distributed across servers, etc.
    
    ## Recap
    
    You have been reading here some of the main concepts that you would probably need to keep in mind when deciding how to deploy your application:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. README.md

    You don't have to learn a new syntax, the methods or classes of a specific library, etc.
    
    Just standard **Python**.
    
    For example, for an `int`:
    
    ```Python
    item_id: int
    ```
    
    or for a more complex `Item` model:
    
    ```Python
    item: Item
    ```
    
    ...and with that single declaration you get:
    
    * Editor support, including:
        * Completion.
        * Type checks.
    * Validation of data:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/testing/benchmark.go

    		b.startBytes = memStats.TotalAlloc
    		b.start = highPrecisionTimeNow()
    		b.timerOn = true
    	}
    }
    
    // StopTimer stops timing a test. This can be used to pause the timer
    // while performing complex initialization that you don't
    // want to measure.
    func (b *B) StopTimer() {
    	if b.timerOn {
    		b.duration += highPrecisionTimeSince(b.start)
    		runtime.ReadMemStats(&memStats)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top