Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 948 for parsable (0.17 sec)

  1. src/cmd/compile/internal/walk/temp.go

    }
    
    // stackBufAddr returns the expression &tmp, where tmp is a newly
    // allocated temporary variable of type [len]elem. This variable is
    // initialized, and elem must not contain pointers.
    func stackBufAddr(len int64, elem *types.Type) *ir.AddrExpr {
    	if elem.HasPointers() {
    		base.FatalfAt(base.Pos, "%v has pointers", elem)
    	}
    	tmp := typecheck.TempAt(base.Pos, ir.CurFunc, types.NewArray(elem, len))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/docker-bake.hcl

    variable "TAGS" {
      default = "latest"
    }
    
    variable "HUB" {
      default = "localhost:5000"
    }
    
    variable "PLATFORMS" {
      default = "linux/amd64,linux/arm64"
    }
    
    images = [
      // Productpage
      {
        name   = "examples-bookinfo-productpage-v1"
        source = "productpage"
      },
      {
        name = "examples-bookinfo-productpage-v-flooding"
        args = {
          flood_factor = 100
        }
        source = "productpage"
      },
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/internal/types/testdata/spec/range_int.go

    		_ = mi
    	}
    }
    
    func _[T int | string](x T) {
    	for range x /* ERROR "cannot range over x (variable of type T constrained by int | string): no core type" */ {
    	}
    }
    
    func _[T int | int64](x T) {
    	for range x /* ERROR "cannot range over x (variable of type T constrained by int | int64): no core type" */ {
    	}
    }
    
    func _[T ~int](x T) {
    	for range x { // ok
    	}
    }
    
    func issue65133() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/go/types/stmt.go

    			// If lhs exists, declare a corresponding variable in the case-local scope.
    			if lhs != nil {
    				// spec: "The TypeSwitchGuard may include a short variable declaration.
    				// When that form is used, the variable is declared at the beginning of
    				// the implicit block in each clause. In clauses with a case listing
    				// exactly one type, the variable has that type; otherwise, the variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/assignments.go

    	}
    
    	// If we have a n:n mapping from lhs variable to rhs expression,
    	// each value can be assigned to its corresponding variable.
    	if l == r && !isCall {
    		var x operand
    		for i, lhs := range lhs {
    			desc := lhs.name
    			if returnStmt != nil && desc == "" {
    				desc = "result variable"
    			}
    			check.expr(newTarget(lhs.typ, desc), &x, orig_rhs[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. releasenotes/notes/custom-gw-classname.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** an environment variable for istiod `PILOT_GATEWAY_API_DEFAULT_GATEWAYCLASS_NAME` that allows overriding the name of the default `GatewayClass` Gateway API resource. The default value is `istio`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 574 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    type OptionalVariableBindings struct {
    	// VersionedParams provides the "params" variable binding. This variable binding may
    	// be set to nil even when OptionalVariableDeclarations.HashParams is set to true.
    	VersionedParams runtime.Object
    	// Authorizer provides the authorizer used for the "authorizer" and
    	// "authorizer.requestResource" variable bindings. If the expression was compiled with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. pkg/model/wasm.go

    import (
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// name of environment variable at Wasm VM, which will carry the Wasm image pull secret.
    	WasmSecretEnv = "ISTIO_META_WASM_IMAGE_PULL_SECRET"
    	// name of environment variable at Wasm VM, which will carry the Wasm image pull policy.
    	WasmPolicyEnv = "ISTIO_META_WASM_IMAGE_PULL_POLICY"
    	// name of environment variable at Wasm VM, which will carry the resource version of WasmPlugin.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. samples/builder/docker-bake.hcl

    variable "HUB" {
      default = "localhost:5000"
    }
    
    variable "PLATFORMS" {
      default = "linux/amd64,linux/arm64"
    }
    
    images = [
      {
        name   = "tcp-echo-server"
        source = "../tcp-echo/src"
        tags   = ["1.3", "latest"]
      },
    
      {
        name   = "examples-helloworld-v1"
        source = "../helloworld/src"
        args   = {
          service_version = "v1"
        }
        tags = ["1.0", "latest"]
      },
      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 845 bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/EnvironmentVariableListInstallationSupplierTest.groovy

            then:
            directories.size() == 2
            directories[0].location == jdk8
            directories[0].source == "environment variable 'JDK8'"
            directories[1].location == jdk9
            directories[1].source == "environment variable 'JDK9'"
        }
    
        Set<InstallationLocation> consistentOrder(Set<InstallationLocation> s) {
            s.sort { it.location.absolutePath }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top