Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for decref (0.1 sec)

  1. pkg/apis/batch/validation/validation.go

    		}
    	}
    
    	if spec.PodFailurePolicy != nil {
    		allErrs = append(allErrs, validatePodFailurePolicy(spec, fldPath.Child("podFailurePolicy"))...)
    	}
    	if spec.SuccessPolicy != nil {
    		if ptr.Deref(spec.CompletionMode, batch.NonIndexedCompletion) != batch.IndexedCompletion {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("successPolicy"), *spec.SuccessPolicy, "requires indexed completion mode"))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.template.gen.yaml

              name: kube-root-ca.crt
          {{- end }}
          {{- if .Values.global.mountMtlsCerts }}
          # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
          - name: istio-certs
            secret:
              optional: true
              {{ if eq .Spec.ServiceAccountName "" }}
              secretName: istio.default
              {{ else -}}
              secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    	case *ast.StructType:
    	case *ast.MapType:
    	default:
    		return false // all other nodes are not legal composite literal types
    	}
    	return true
    }
    
    // If x is of the form *T, deref returns T, otherwise it returns x.
    func deref(x ast.Expr) ast.Expr {
    	if p, isPtr := x.(*ast.StarExpr); isPtr {
    		x = p.X
    	}
    	return x
    }
    
    // checkExprOrType checks that x is an expression or a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. go.sum

    github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 h1:rpfIENRNNilwHwZeG5+P150SMrnNEcHYvcCuK6dPZSg=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	reason := metrics.PodCreateNew
    	if feature.DefaultFeatureGate.Enabled(features.JobPodReplacementPolicy) {
    		if ptr.Deref(job.Spec.PodReplacementPolicy, batch.TerminatingOrFailed) == batch.Failed && jobCtx.failed > 0 {
    			reason = metrics.PodRecreateFailed
    		} else if jobCtx.failed > 0 || ptr.Deref(jobCtx.terminating, 0) > 0 {
    			reason = metrics.PodRecreateTerminatingOrFailed
    		}
    	}
    	if succeeded > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	if !ok {
    		return false
    	}
    
    	addr := ""
    	deref := ""
    	if p.isVariable(index.X) {
    		addr = "&"
    		deref = "*"
    	}
    
    	fmt.Fprintf(sb, "_cgoIndex%d := %s%s; ", i, addr, gofmtPos(index.X, index.X.Pos()))
    	origX := index.X
    	index.X = ast.NewIdent(fmt.Sprintf("_cgoIndex%d", i))
    	if deref == "*" {
    		index.X = &ast.StarExpr{X: index.X}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    				}
    			}
    			typ = check.typ(e.Type)
    			base = typ
    
    		case hint != nil:
    			// no composite literal type present - use hint (element type of enclosing type)
    			typ = hint
    			base, _ = deref(coreType(typ)) // *T implies &T{}
    			if base == nil {
    				check.errorf(e, InvalidLit, "invalid composite literal element type %s (no core type)", typ)
    				goto Error
    			}
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    				break
    			}
    			typ = check.typ(e.Type)
    			base = typ
    
    		case hint != nil:
    			// no composite literal type present - use hint (element type of enclosing type)
    			typ = hint
    			base, _ = deref(coreType(typ)) // *T implies &T{}
    			if base == nil {
    				check.errorf(e, InvalidLit, "invalid composite literal element type %s (no core type)", typ)
    				goto Error
    			}
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/tool-chains/groovy/build.gradle[tag=toolChains]
    ----
    
    Each tool chain implementation allows for a certain degree of configuration (see the API documentation for more details).
    
    [[sec:using_tool_chains]]
    === Using tool chains
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    // this ratio and multiplying it by heapInUse at the end of the last GC, which
    // allows us to account for this additional fragmentation. Note that this
    // procedure makes the assumption that the degree of fragmentation won't change
    // dramatically over the next GC cycle. Overestimating the amount of
    // fragmentation simply results in higher memory use, which will be accounted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top