Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 0b0190 (0.13 sec)

  1. src/cmd/internal/obj/s390x/condition_code.go

    	NoBorrow CCMask = Carry
    )
    
    // Inverse returns the complement of the condition code mask.
    func (c CCMask) Inverse() CCMask {
    	return c ^ Always
    }
    
    // ReverseComparison swaps the bits at 0b0100 and 0b0010 in the mask,
    // reversing the behavior of greater than and less than conditions.
    func (c CCMask) ReverseComparison() CCMask {
    	r := c & EqualOrUnordered
    	if c&Less != 0 {
    		r |= Greater
    	}
    	if c&Greater != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/ftbrn2c08.sng

    ffffff ffffff ffffff c7c7c7 348634 00b100 008d00 00d200 00f300 4c9b4c 3b9e3b 00c700 009800 3d943d 9b9b9b 9d9d9d 9e9e9e 6e6e6e 595959 2b2bad 0000ff 0000a6 252559 43434f 16167e 00009f 01018e 9c9ca1 ffffff ffffff ffffff ffffff 
    ffffff ffffff ffffff d8d8d8 3e7d3e 00b100 007b00 00b800 00f100 178b17 3b9c3b 00c600 009700 3d933d 9a9a9a 9b9b9b 9d9d9d 676767 575759 0909ee 0000f0 04046b 33335a 070790 00009e 00007c 0d0d5d c7c7c7 ffffff ffffff ffffff ffffff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 7.2K bytes
    - Viewed (0)
  3. src/image/png/testdata/pngsuite/ftp0n2c08.sng

    7f7f7f 7f7f7f 7f7f7f c7c7c7 348634 00b100 008d00 00d200 00f300 4c9b4c 3b9e3b 00c700 009800 3d943d 9b9b9b 9d9d9d 9e9e9e 6e6e6e 595959 2b2bad 0000ff 0000a6 252559 43434f 16167e 00009f 01018e 9c9ca1 7f7f7f 7f7f7f 7f7f7f 7f7f7f 
    7f7f7f 7f7f7f 7f7f7f d8d8d8 3e7d3e 00b100 007b00 00b800 00f100 178b17 3b9c3b 00c600 009700 3d933d 9a9a9a 9b9b9b 9d9d9d 676767 575759 0909ee 0000f0 04046b 33335a 070790 00009e 00007c 0d0d5d c7c7c7 7f7f7f 7f7f7f 7f7f7f 7f7f7f 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 7.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/derived_attrs.mlir

        // CHECK: Tdense = [i64]
        // CHECK-SAME: dense_shapes = [#corert.shape<>]
        { device = "/device:CPU:0", num_sparse = 0 : i64, dense_shapes = [#tf_type.shape<>], resultSegmentSizes = array<i32: 0, 0, 0, 1, 0, 0>}
          : (tensor<?x!tf_type.string>, tensor<0x!tf_type.string>, tensor<0x!tf_type.string>, tensor<1x!tf_type.string>, tensor<0x!tf_type.string>, tensor<0xi64>)
          -> tensor<?xi64>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 959 bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToDate_SpecificPattern() throws Exception {
            final Date date = toDate("07//09//10", "dd//MM//yy");
            assertThat(new SimpleDateFormat("yyyy/MM/dd").format(date), is("2010/09/07"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/debug/pe/pe.go

    	IMAGE_FILE_LOCAL_SYMS_STRIPPED     = 0x0008
    	IMAGE_FILE_AGGRESIVE_WS_TRIM       = 0x0010
    	IMAGE_FILE_LARGE_ADDRESS_AWARE     = 0x0020
    	IMAGE_FILE_BYTES_REVERSED_LO       = 0x0080
    	IMAGE_FILE_32BIT_MACHINE           = 0x0100
    	IMAGE_FILE_DEBUG_STRIPPED          = 0x0200
    	IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 0x0400
    	IMAGE_FILE_NET_RUN_FROM_SWAP       = 0x0800
    	IMAGE_FILE_SYSTEM                  = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 01:21:43 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. src/math/example_test.go

    	// Output: 1.00
    }
    
    func ExampleSin() {
    	fmt.Printf("%.2f", math.Sin(math.Pi))
    	// Output: 0.00
    }
    
    func ExampleSincos() {
    	sin, cos := math.Sincos(0)
    	fmt.Printf("%.2f, %.2f", sin, cos)
    	// Output: 0.00, 1.00
    }
    
    func ExampleSinh() {
    	fmt.Printf("%.2f", math.Sinh(0))
    	// Output: 0.00
    }
    
    func ExampleTan() {
    	fmt.Printf("%.2f", math.Tan(0))
    	// Output: 0.00
    }
    
    func ExampleTanh() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:09:53 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            compare("1.a.2", "1a2") == 0 // number-word and word-number boundaries are considered separators
        }
    
        def "leading zeros in numeric parts are ignored"() {
            expect:
            compare("01.0", "1.0") == 0
            compare("1.0", "01.0") == 0
            compare("001.2.003", "0001.02.3") == 0
        }
    
        // original Ivy behavior - should we change it?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int CAP_RPC_REMOTE_APIS  = 0x0020;
        static final int CAP_STATUS32         = 0x0040;
        static final int CAP_LEVEL_II_OPLOCKS = 0x0080;
        static final int CAP_LOCK_AND_READ    = 0x0100;
        static final int CAP_NT_FIND          = 0x0200;
        static final int CAP_DFS              = 0x1000;
        static final int CAP_EXTENDED_SECURITY = 0x80000000;
    
        // file attribute encoding
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    	// Entry 180 - 1BF
    	0x0000, 0x0000, 0x0000, 0x0182, 0x0000, 0x0184, 0x0184, 0x0184,
    	0x0184, 0x0000, 0x0000, 0x0000, 0x018b, 0x0000, 0x0000, 0x018e,
    	0x0000, 0x0000, 0x0191, 0x0000, 0x0000, 0x0000, 0x0195, 0x0000,
    	0x0197, 0x0000, 0x0000, 0x019a, 0x0000, 0x0000, 0x019d, 0x0000,
    	0x019f, 0x0000, 0x01a1, 0x0000, 0x01a3, 0x0000, 0x01a5, 0x0000,
    	0x01a7, 0x0000, 0x01a9, 0x0000, 0x01ab, 0x0000, 0x01ad, 0x0000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top