Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,474 for Tconstants (0.34 sec)

  1. src/go/types/eval.go

    // to compute types and values, but in addition to Check, as these
    // functions ignore the context in which an expression is used (e.g., an
    // assignment). Thus, top-level untyped constants will return an
    // untyped type rather than the respective context-specific type.
    func CheckExpr(fset *token.FileSet, pkg *Package, pos token.Pos, expr ast.Expr, info *Info) (err error) {
    	// determine scope
    	var scope *Scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    		}
    		if x, ok := constant.Uint64Val(val); ok {
    			return x
    		}
    	case constant.Float:
    		if x, ok := constant.Float64Val(val); ok {
    			return x
    		}
    	case constant.String:
    		return constant.StringVal(val)
    	}
    	return nil
    }
    
    // A valueMap maps a case value (of a basic Go type) to a list of positions
    // where the same case value appeared, together with the corresponding case
    // types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    			// This is a constant shifted 16 bits to the left, convert it to ADDIS/ORIS $const,...
    			p.As = AADDIS
    			// Use ORIS for large constants which should not be sign extended.
    			if p.From.Offset >= 0x80000000 {
    				p.As = AORIS
    			}
    			p.Reg = REG_R0
    			p.From.Offset >>= 16
    		}
    
    	case AMOVD:
    		// Skip this opcode if it is not a constant load.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	ext.RunQuietlyAndIgnore(constants.IPTables, iptV, nil, "-t", constants.NAT, "-D", constants.OUTPUT, "-p", constants.UDP, "-j", constants.ISTIOOUTPUT)
    	ext.RunQuietlyAndIgnore(constants.IPTables, iptV, nil, "-t", constants.RAW, "-D", constants.OUTPUT, "-p", constants.UDP, "-j", constants.ISTIOOUTPUT)
    	ext.RunQuietlyAndIgnore(constants.IPTables, ipt6V, nil, "-t", constants.NAT, "-D", constants.OUTPUT, "-p", constants.UDP, "-j", constants.ISTIOOUTPUT)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name: constants.NodeKubeletBootstrap,
    				},
    				RoleRef: rbac.RoleRef{
    					APIGroup: rbac.GroupName,
    					Kind:     "ClusterRole",
    					Name:     constants.NodeBootstrapperClusterRoleName,
    				},
    				Subjects: []rbac.Subject{
    					{
    						Kind: rbac.GroupKind,
    						Name: constants.NodeBootstrapTokenAuthGroup,
    					},
    				},
    			}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 04:16:31 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/operand.go

    // typexpr    <expr> (               <mode>                    )
    //
    // constant   <expr> (<untyped kind> <mode>                    )
    // constant   <expr> (               <mode>       of type <typ>)
    // constant   <expr> (<untyped kind> <mode> <val>              )
    // constant   <expr> (               <mode> <val> of type <typ>)
    //
    // variable   <expr> (<untyped kind> <mode>                    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.loginRequired = fessConfig.isLoginRequired() ? Constants.TRUE : Constants.FALSE;
            form.resultCollapsed = fessConfig.isResultCollapsed() ? Constants.TRUE : Constants.FALSE;
            form.loginLink = fessConfig.isLoginLinkEnabled() ? Constants.TRUE : Constants.FALSE;
            form.thumbnail = fessConfig.isThumbnailEnabled() ? Constants.TRUE : Constants.FALSE;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run.go

    					cfg.ruleBuilder.AppendRule(iptableslog.IncludeInboundPort, constants.ISTIOINBOUND, constants.MANGLE, "-p", constants.TCP,
    						"--dport", port, "-m", "conntrack", "--ctstate", "RELATED,ESTABLISHED", "-j", constants.ISTIODIVERT)
    					cfg.ruleBuilder.AppendRule(iptableslog.IncludeInboundPort,
    						constants.ISTIOINBOUND, constants.MANGLE, "-p", constants.TCP, "--dport", port, "-j", constants.ISTIOTPROXY)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name: constants.NodeKubeletBootstrap,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    			Kind:     "ClusterRole",
    			Name:     constants.NodeBootstrapperClusterRoleName,
    		},
    		Subjects: []rbac.Subject{
    			{
    				Kind: rbac.GroupKind,
    				Name: constants.NodeBootstrapTokenAuthGroup,
    			},
    		},
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.InboundTProxyRouteTable, "r", "", &cfg.InboundTProxyRouteTable)
    
    	flag.BindEnv(fs, constants.DryRun, "n", "Do not call any external dependencies like iptables.",
    		&cfg.DryRun)
    
    	flag.BindEnv(fs, constants.TraceLogging, "", "Insert tracing logs for each iptables rules, using the LOG chain.", &cfg.TraceLogging)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top