Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 146 of 146 for REWRITES (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		},
    
    		// (InvertFlags (CMPQ a b)) == (CMPQ b a)
    		// So if we want (SETL (CMPQ a b)) but we can't do that because a is a constant,
    		// then we do (SETL (InvertFlags (CMPQ b a))) instead.
    		// Rewrites will convert this to (SETG (CMPQ b a)).
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// Pseudo-ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Rsh8x16 x y) => (SRAcond (SignExt8to32 x) (ZeroExt16to32 y) (CMPconst [256] (ZeroExt16to32 y)))
    (Rsh8x8  x y) => (SRA (SignExt8to32 x) (ZeroExt8to32 y))
    
    // constant shifts
    // generic opt rewrites all constant shifts to shift by Const64
    (Lsh32x64 x (Const64 [c])) && uint64(c) < 32 => (SLLconst x [int32(c)])
    (Rsh32x64 x (Const64 [c])) && uint64(c) < 32 => (SRAconst x [int32(c)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.9.md

    *   The Apiserver proxy now rewrites the URL when a service returns an absolute path with the request's host. ([#52556](https://github.com/kubernetes/kubernetes/pull/52556),[ @roycaihw](https://github.com/roycaihw))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // as in -test.v. When invoking the generated test binary (the result of
    // 'go test -c') directly, however, the prefix is mandatory.
    //
    // The 'go test' command rewrites or removes recognized flags,
    // as appropriate, both before and after the optional package list,
    // before invoking the test binary.
    //
    // For instance, the command
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		t.Errorf("numComments (%d) != 0 after partial resync when numEndpoints (%d) > threshold (%d)", numComments, expectedEndpoints+3, largeClusterEndpointsThreshold)
    	}
    
    	// Now force a full resync and confirm that it rewrites the older services with
    	// no comments as well.
    	fp.forceSyncProxyRules()
    	expectedEndpoints += 3
    
    	firstEndpoint, numEndpoints, numComments = countEndpointsAndComments(fp.iptablesData.String(), "10.0.0.0")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  6. RELEASE.md

    (Terry) Tang, Yuxin Wu, Ziyue(Louis) Lu
    
    # Release 1.7.0
    
    ## Major Features And Improvements
    
    *   Eager mode is moving out of contrib, try `tf.enable_eager_execution()`.
    *   Graph rewrites emulating fixed-point quantization compatible with TensorFlow
        Lite, supported by new `tf.contrib.quantize` package.
    *   Easily customize gradient computation with `tf.custom_gradient`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top