Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,149 for constInt8 (0.24 sec)

  1. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

    import static gradle.unit.test.Constant7.CONSTANT7;
    import static gradle.unit.test.Constant8.CONSTANT8;
    import static gradle.unit.test.Constant9.CONSTANT9;
    import static gradle.unit.test.Constant10.CONSTANT10;
    
    @Annotation(CONSTANT1 $addition)
    class A {
        @Annotation(CONSTANT2 $addition)
        private Map<@Annotation(CONSTANT3 $addition) String, String> field;
    
        @Annotation(CONSTANT4 $addition)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	arg0.Uses++
    	arg1.Uses++
    	arg2.Uses++
    	arg3.Uses++
    	return v
    }
    
    // constVal returns a constant value for c.
    func (f *Func) constVal(op Op, t *types.Type, c int64, setAuxInt bool) *Value {
    	if f.constants == nil {
    		f.constants = make(map[int64][]*Value)
    	}
    	vv := f.constants[c]
    	for _, v := range vv {
    		if v.Op == op && v.Type.Compare(t) == types.CMPeq {
    			if setAuxInt && v.AuxInt != c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    				return nil
    			}
    		case constant.String:
    			i := constant.StringVal(u)
    			if i == "" {
    				return s.constEmptyString(n.Type())
    			}
    			return s.entryNewValue0A(ssa.OpConstString, n.Type(), ssa.StringToAux(i))
    		case constant.Bool:
    			return s.constBool(constant.BoolVal(u))
    		case constant.Float:
    			f, _ := constant.Float64Val(u)
    			switch n.Type().Size() {
    			case 4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/sccp.go

    // and then propagates constant facts only along reachable control flow paths.
    // Since some basic blocks are not visited yet, corresponding inputs of phi become
    // Top, we use the meet(phi) to compute its lattice.
    //
    // 	  Top ∩ any = any
    // 	  Bottom ∩ any = Bottom
    // 	  ConstantAConstantA = ConstantA
    // 	  ConstantAConstantB = Bottom
    //
    // Each lattice value is lowered most twice(Top to Constant, Constant to Bottom)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			case 16:
    				c = f.ConstInt16(typ, int16(constValue))
    			case 8:
    				c = f.ConstInt8(typ, int8(constValue))
    			default:
    				panic("unexpected integer size")
    			}
    			v.SetArg(i, c)
    			if b.Func.pass.debug > 1 {
    				b.Func.Warnl(v.Pos, "Proved %v's arg %d (%v) is constant %d", v, i, arg, constValue)
    			}
    		}
    	}
    
    	if b.Kind != BlockIf {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. cni/pkg/constants/constants.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package constants
    
    // Command line arguments
    const (
    	// Install
    	MountedCNINetDir     = "mounted-cni-net-dir"
    	CNINetDir            = "cni-net-dir"
    	CNIConfName          = "cni-conf-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/constant.h

    class Constant : public TensorHandleConvertible {
     public:
      static Status Create(ImmediateExecutionContext* ctx,
                           AbstractTensorInterface* tensor,
                           std::unique_ptr<Constant>* output);
    
      // RevivedConstant is movable, but not copyable.
      Constant(Constant&& other) = default;
      Constant& operator=(Constant&& other) = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package constants
    
    const (
    	// UnspecifiedIP constant for empty IP address
    	UnspecifiedIP = "0.0.0.0"
    	// UnspecifiedIPv6 constant for empty IPv6 address
    	UnspecifiedIPv6 = "::"
    
    	// PilotWellKnownDNSCertPath is the path location for Pilot dns serving cert, often used with custom CA integrations
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/revived_types/constant.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    
    Constant::Constant(ImmediateTensorHandlePtr handle)
        : TensorHandleConvertible(std::move(handle)) {}
    
    Status Constant::Create(ImmediateExecutionContext* ctx,
                            AbstractTensorInterface* tensor,
                            std::unique_ptr<Constant>* output) {
      ImmediateExecutionTensorHandle* handle = ctx->CreateLocalHandle(tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 23 19:44:24 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/constants/constants.go

    		``)
    )
    
    const (
    	DefaultProxyUID    = "1337"
    	DefaultProxyUIDInt = int64(1337)
    )
    
    // Constants used in environment variables
    const (
    	EnvoyUser = "ENVOY_USER"
    )
    
    // Constants for syscall
    const (
    	// sys/socket.h
    	SoOriginalDst = 80
    )
    
    const (
    	DefaultIptablesProbePortUint = 15002
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top