Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for constInt8 (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/internal/syscall/unix/constants.go

    Kir Kolyshkin <******@****.***> 1717102840 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompileTimeConstantProvider.kt

            val bindingContext = analysisContext.analyze(expression)
    
            val constant = ConstantExpressionEvaluator.getPossiblyErrorConstant(expression, bindingContext)
    
            // TODO: how to _not_ evaluate expressions with a compilation error, e.g., uninitialized property access
            if (constant?.usesNonConstValAsConstant == true) return null
    
            return constant?.toConstantValue(TypeUtils.NO_EXPECTED_TYPE)?.toKtConstantValue()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    			_, _ = fmt.Fprintln(&b, "COMMIT")
    		}
    	}
    	return b.String()
    }
    
    func (rb *IptablesRuleBuilder) buildRestore(rules []*Rule) string {
    	tableRulesMap := map[string][]string{
    		constants.FILTER: {},
    		constants.NAT:    {},
    		constants.MANGLE: {},
    	}
    
    	chainTableLookupMap := sets.New[string]()
    	for _, r := range rules {
    		chainTable := fmt.Sprintf("%s:%s", r.chain, r.table)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api.go

    // language object (Object) it denotes.
    // Use Info.{Defs,Uses,Implicits} for the results of name resolution.
    //
    // Constant folding computes the exact constant value (constant.Value)
    // for every expression (syntax.Expr) that is a compile-time constant.
    // Use Info.Types[expr].Value for the results of constant folding.
    //
    // Type inference computes the type (Type) of every expression (syntax.Expr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. cni/pkg/log/uds_test.go

    // limitations under the License.
    
    package log
    
    import (
    	"encoding/json"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    	"time"
    
    	"istio.io/istio/cni/pkg/constants"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestUDSLog(t *testing.T) {
    	// Start UDS log server
    	udsSockDir := t.TempDir()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    		K8sServiceAccountPath: constants.ServiceAccountPath,
    
    		CNIBinSourceDir:  constants.CNIBinDir,
    		CNIBinTargetDirs: []string{constants.HostCNIBinDir},
    		MonitoringPort:   viper.GetInt(constants.MonitoringPort),
    		LogUDSAddress:    viper.GetString(constants.LogUDSAddress),
    		CNIEventAddress:  viper.GetString(constants.CNIEventAddress),
    
    		ExcludeNamespaces: viper.GetString(constants.ExcludeNamespaces),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	Namespaces krt.Collection[*v1.Namespace], o metav1.ObjectMeta,
    ) *Waypoint {
    	w := fetchWaypointForTarget(ctx, Waypoints, Namespaces, o)
    	if w != nil {
    		if w.TrafficType == constants.ServiceTraffic || w.TrafficType == constants.AllTraffic {
    			return w
    		}
    		// Waypoint does not support Service traffic
    		log.Debugf("Unable to add waypoint %s/%s; traffic type %s not supported for %s/%s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top