Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for toName (0.39 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            {{ end -}}
            imagePullPolicy: "{{ valueOrDefault .Values.global.imagePullPolicy `Always` }}"
          {{- if .Values.global.proxy_init.resources }}
            resources:
              {{ toYaml .Values.global.proxy_init.resources | indent 4 }}
          {{- else }}
            resources: {}
          {{- end }}
            securityContext:
              runAsUser: 0
              runAsNonRoot: false
              capabilities:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    		}
    		toTake := 0
    
    		// Prefer GVK if it is our fake policy or binding
    		for i, knownKind := range knownKinds {
    			if knownKind == p.policyGVK || knownKind == p.bindingGVK {
    				toTake = i
    				break
    			}
    		}
    
    		objectGVK = knownKinds[toTake]
    	}
    
    	// Make sure GVK is known to the fake rest mapper. To prevent cryptic error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    		return
    	}
    
    	as := s[0].(*ir.AssignStmt)
    	cp := s[1].(*ir.BinaryExpr)
    	if as.Y == nil || as.Y.Op() != ir.OMAKESLICE || ir.IsBlank(as.X) ||
    		as.X.Op() != ir.ONAME || cp.X.Op() != ir.ONAME || cp.Y.Op() != ir.ONAME ||
    		as.X.Name() != cp.X.Name() || cp.X.Name() == cp.Y.Name() {
    		// The line above this one is correct with the differing equality operators:
    		// we want as.X and cp.X to be the same name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	}
    	return off + base + index, suffix
    }
    
    type goFPInfo struct {
    	op        Op
    	transArgs []int  // indexes of arguments which need transformation
    	gnuName   string // instruction name in GNU syntax
    	goName    string // instruction name in Plan 9 syntax
    }
    
    var fpInst []goFPInfo = []goFPInfo{
    	{VADD_EQ_F32, []int{2, 1, 0}, "VADD", "ADDF"},
    	{VADD_EQ_F64, []int{2, 1, 0}, "VADD", "ADDD"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/fmt.go

    		return
    	}
    
    	if n == nil {
    		fmt.Fprint(s, "<nil>")
    		return
    	}
    
    	t := n.Type()
    	if verb == 'L' && t != nil {
    		if t.Kind() == types.TNIL {
    			fmt.Fprint(s, "nil")
    		} else if n.Op() == ONAME && n.Name().AutoTemp() {
    			fmt.Fprintf(s, "%v value", t)
    		} else {
    			fmt.Fprintf(s, "%v (type %v)", n, t)
    		}
    		return
    	}
    
    	// TODO inlining produces expressions with ninits. we can't print these yet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

            return new String[] { str };
        }
    
        protected LocalDateTime toLocalDateTime(Object value) {
            return DfTypeUtil.toLocalDateTime(value);
        }
    
        protected Date toDate(Object value) {
            return DfTypeUtil.toDate(value);
        }
    
        protected SearchHits getSearchHits(final SearchResponse response) {
            SearchHits hits = response.getHits();
            if (hits == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

            if (fqNameString != null) {
                val fqNameUnsafe = FqNameUnsafe(fqNameString)
                if (fqNameUnsafe.isSafe) {
                    return ClassId.topLevel(fqNameUnsafe.toSafe())
                }
            }
    
            return null
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    				selrecv.SetTypecheck(1)
    				selrecv.SetInit(n.Init())
    				ncase.Comm = selrecv
    			}
    			switch n.Op() {
    			default:
    				pos := n.Pos()
    				if n.Op() == ir.ONAME {
    					// We don't have the right position for ONAME nodes (see #15459 and
    					// others). Using ncase.Pos for now as it will provide the correct
    					// line number (assuming the expression follows the "case" keyword
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    		for i := 0; i < t.NumField(); i++ {
    			f := t.Field(i)
    			if !isSent(&f) {
    				continue
    			}
    			typ := userType(f.Type).base
    			tname := typ.Name()
    			if tname == "" {
    				t := userType(f.Type).base
    				tname = t.String()
    			}
    			gt, err := getBaseType(tname, f.Type)
    			if err != nil {
    				return nil, err
    			}
    			// Some mutually recursive types can cause us to be here while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/infer.go

    	if len(tparams) == 0 {
    		return nil, typ // nothing to do
    	}
    
    	tparams2 := make([]*TypeParam, len(tparams))
    	for i, tparam := range tparams {
    		tname := NewTypeName(tparam.Obj().Pos(), tparam.Obj().Pkg(), tparam.Obj().Name(), nil)
    		tparams2[i] = NewTypeParam(tname, nil)
    		tparams2[i].index = tparam.index // == i
    	}
    
    	renameMap := makeRenameMap(tparams, tparams2)
    	for i, tparam := range tparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top