Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 110 for palmer (0.2 sec)

  1. src/go/printer/nodes.go

    //     and 4 (never use spaces) in Compact mode.
    func (p *printer) binaryExpr(x *ast.BinaryExpr, prec1, cutoff, depth int) {
    	prec := x.Op.Precedence()
    	if prec < prec1 {
    		// parenthesis needed
    		// Note: The parser inserts an ast.ParenExpr node; thus this case
    		//       can only occur if the AST is created in a different way.
    		p.print(token.LPAREN)
    		p.expr0(x, reduceDepth(depth)) // parentheses undo one level of depth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    					}
    					src.CallOrFail(t, opts)
    				})
    			})
    		}
    	})
    }
    
    func TestAuthorizationGateway(t *testing.T) {
    	runTest := func(t framework.TestContext, f func(t framework.TestContext, src echo.Caller, dst echo.Instance, opt echo.CallOptions)) {
    		svcs := apps.All
    		for _, dst := range svcs {
    			t.NewSubTestf("to %v", dst.Config().Service).Run(func(t framework.TestContext) {
    				dst := dst
    				opt := echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser
    
    import org.gradle.api.internal.artifacts.DefaultModuleIdentifier
    import org.gradle.internal.component.external.descriptor.MavenScope
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    		return mtime1.After(mtime2)
    	})
    
    	defPool := PoolObjInfo{Index: -1}
    	for _, pinfo := range poolObjInfos {
    		// skip all objects from suspended pools if asked by the
    		// caller.
    		if opts.SkipDecommissioned && z.IsSuspended(pinfo.Index) {
    			continue
    		}
    		// Skip object if it's from pools participating in a rebalance operation.
    		if opts.SkipRebalancing && z.IsPoolRebalancing(pinfo.Index) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    	"fmt"
    	"go/ast"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"internal/goversion"
    	"internal/testenv"
    	"reflect"
    	"regexp"
    	"slices"
    	"strings"
    	"sync"
    	"testing"
    
    	. "go/types"
    )
    
    // nopos indicates an unknown position
    var nopos token.Pos
    
    func mustParse(fset *token.FileSet, src string) *ast.File {
    	f, err := parser.ParseFile(fset, pkgName(src), src, parser.ParseComments)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    				n.Const = fmt.Sprintf("%#x", i)
    			} else if n.Define[0] == '\'' {
    				if _, err := parser.ParseExpr(n.Define); err == nil {
    					n.Kind = "iconst"
    					n.Const = n.Define
    				}
    			} else if n.Define[0] == '"' {
    				if _, err := parser.ParseExpr(n.Define); err == nil {
    					n.Kind = "sconst"
    					n.Const = n.Define
    				}
    			}
    
    			if n.IsConst() {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    	allErrs := field.ErrorList{}
    	if obj.Spec.ManualSelector != nil && *obj.Spec.ManualSelector {
    		return allErrs
    	}
    
    	if obj.Spec.Selector == nil {
    		return allErrs // This case should already have been checked in caller.  No need for more errors.
    	}
    
    	// If somehow uid was unset then we would get "controller-uid=" as the selector
    	// which is bad.
    	if obj.ObjectMeta.UID == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                // the `invoke` member function. In this case, we use the `calleeExpression` in the `KtCallExpression` as the PSI
                // representation of this receiver. Caller can then use this PSI for further call resolution, which is implemented by the
                // parameter `resolveCalleeExpressionOfFunctionCall` in `toKtCallInfo`.
                var explicitReceiverPsi = when (psi) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. go.sum

    github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE=
    github.com/euank/go-kmsg-parser v2.0.0+incompatible h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=
    github.com/euank/go-kmsg-parser v2.0.0+incompatible/go.mod h1:MhmAMZ8V4CYH4ybgdRwPr2TU5ThnS43puaKEMpja1uw=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    			reg = regexp.MustCompile("(^unix\\.[^/]+$|.*\\/unix\\.[^/]+$)")
    		}
    		i := 1
    		pc, file, line, ok := runtime.Caller(i)
    		if ok {
    			name = runtime.FuncForPC(pc).Name()
    		}
    		for ok && reg.MatchString(runtime.FuncForPC(pc).Name()) {
    			i += 1
    			pc, file, line, ok = runtime.Caller(i)
    		}
    		if ok {
    			if ZosTracefile == nil {
    				ZosConsolePrintf("From %s:%d\n", file, line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top