Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for Odd (0.04 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

            StringBuilder sb = new StringBuilder(512);
            boolean odd = true;
            sb.append(
                    "<table border='1' class='zebra-striped'><tr class='a'><th><b>Options</b></th><th><b>Description</b></th></tr>");
            for (Option option : new CLIManagerExtension().getOptions()) {
                odd = !odd;
                sb.append("<tr class='");
                sb.append(odd ? 'a' : 'b');
                sb.append("'>");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/magic.go

    //
    // To extend this to even integers, consider c = d0 * 2^k where d0 is odd.
    // We can test whether x is divisible by both d0 and 2^k.
    // For d0, the test is the same as above.  Let m be such that m*d0 mod 2^n == 1
    // Then x*m mod 2^n <= ⎣(2^n - 1)/d0⎦ is the first test.
    // The test for divisibility by 2^k is a check for k trailing zeroes.
    // Note that since d0 is odd, m is odd and thus x*m will have the same number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue67160.go

    // unaligned loads.
    
    package main
    
    // T has a big field that wants to be compared with larger loads/stores.
    // T is "special" because of the unnamed field, so it needs a generated equality function.
    // T is an odd number of bytes in size and has alignment 1.
    type T struct {
    	src [8]byte
    	_   byte
    }
    
    // U contains 8 copies of T, each at a different %8 alignment.
    type U [8]T
    
    //go:noinline
    func f(x, y *U) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:34:04 UTC 2024
    - 767 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.h

                                         Value &padding, int num_dims = 4);
    
    // Given value that is in 8bit type, but holds 4bit data in unpacked format,
    // pack to nibble format along pack_dim.
    // If the pack_dim size is odd, add 1-size 0 padding and then pack.
    Value PackOperand(OpBuilder &builder, Location loc, Value value, int pack_dim);
    
    }  // namespace mlir::quant
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/slices/example_test.go

    		return n < 0
    	})
    	fmt.Println("Has a negative:", hasNegative)
    	hasOdd := slices.ContainsFunc(numbers, func(n int) bool {
    		return n%2 != 0
    	})
    	fmt.Println("Has an odd number:", hasOdd)
    	// Output:
    	// Has a negative: true
    	// Has an odd number: false
    }
    
    func ExampleDelete() {
    	letters := []string{"a", "b", "c", "d", "e"}
    	letters = slices.Delete(letters, 1, 4)
    	fmt.Println(letters)
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/loong64.go

    // Copyright 2022 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.
    
    // This file encapsulates some of the odd characteristics of the
    // Loong64 (LoongArch64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/loong64"
    )
    
    func jumpLoong64(word string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

    .col-summary-item-name a:link, .col-summary-item-name a:visited {
        font-weight:bold;
    }
    .even-row-color, .even-row-color .table-header {
        background-color:var(--even-row-color);
    }
    .odd-row-color, .odd-row-color .table-header {
        background-color:var(--odd-row-color);
    }
    /*
     * Styles for contents.
     */
    div.block {
        font-size:var(--body-font-size);
        font-family:var(--block-font-family);
    }
    .col-last div {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/ppc64.go

    // Copyright 2015 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.
    
    // This file encapsulates some of the odd characteristics of the
    // 64-bit PowerPC (PPC64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    )
    
    func jumpPPC64(word string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. internal/amztime/parse.go

    	"net/http"
    	"time"
    )
    
    // Supported amz date formats.
    var amzDateFormats = []string{
    	// Do not change this order, x-amz-date format is usually in
    	// iso8601Format rest are meant for relaxed handling of other
    	// odd SDKs that might be out there.
    	"20060102T150405Z",
    	time.RFC1123,
    	time.RFC1123Z,
    	// Add new AMZ date formats here.
    }
    
    // ErrMalformedDate always returned for dates that cannot be parsed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/maps/example_test.go

    }
    
    func ExampleDeleteFunc() {
    	m := map[string]int{
    		"one":   1,
    		"two":   2,
    		"three": 3,
    		"four":  4,
    	}
    	maps.DeleteFunc(m, func(k string, v int) bool {
    		return v%2 != 0 // delete odd values
    	})
    	fmt.Println(m)
    	// Output:
    	// map[four:4 two:2]
    }
    
    func ExampleEqual() {
    	m1 := map[int]string{
    		1:    "one",
    		10:   "Ten",
    		1000: "THOUSAND",
    	}
    	m2 := map[int]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:21:56 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top