Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,935 for parsable (0.13 sec)

  1. pkg/config/validation/header_value_validator.go

    		case LiteralParserState:
    			// Searching for start of %VARIABLE% expression.
    			if ch != '%' {
    				break
    			}
    
    			if !hasNextCh {
    				return errors.New("invalid header configuration. Un-escaped %")
    			}
    
    			if headerValue[pos+1] == '%' {
    				// Escaped %, skip next character.
    				pos++
    				break
    			}
    
    			// Un-escaped %: start of variable name. Create a formatter for preceding characters, if any.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 21:37:52 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/aot/tests/make_test_graphs.py

    def tfvariable(_):
      x = variables.Variable([1000.0], name='x', shape=[1])
      old_x = x.value()
      with ops.control_dependencies([old_x]):
        new_x = x.assign_add([42.0])
      array_ops_stack.stack([old_x, new_x], name='result')
    
    
    def tfvariable_sequential_updates(_):
      x = variables.Variable(1.0, name='x')
      y = variables.Variable(1.0, name='y')
      updates = control_flow_ops.no_op()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeResolver.java

            checkArgument(!variable.equalsType(type), "Type variable %s bound to itself", variable);
            builder.put(variable, type);
          }
          return new TypeTable(builder.buildOrThrow());
        }
    
        final Type resolve(TypeVariable<?> var) {
          TypeTable unguarded = this;
          TypeTable guarded =
              new TypeTable() {
                @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/git.go

    		// "Git-Protocol" HTTP request header, which the CGI host then converts
    		// to an environment variable (HTTP_GIT_PROTOCOL).
    		//
    		// However, versions of Git older that 2.34.0 don't recognize the
    		// HTTP_GIT_PROTOCOL variable, and instead need that value to be set in the
    		// GIT_PROTOCOL variable. We do so here so that vcweb can work reliably
    		// with older Git releases. (As of the time of writing, the Go project's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/aot/tests/test_graph_tfvariable_sequential_updates.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    fetch {
      id { node_name: "result" }
    }
    
    variable {
      node_name: "x"
      type: DT_FLOAT
    }
    
    variable {
      node_name: "y"
      type: DT_FLOAT
      readonly: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 10:45:51 UTC 2019
    - 199 bytes
    - Viewed (0)
  10. src/internal/types/testdata/spec/conversions.go

    func _[X, T Integer | ~string](x X) T {
    	return T(x /* ERROR "cannot convert x (variable of type X constrained by Integer | ~string) to type T: cannot convert string (in X) to type int (in T)" */)
    }
    
    // "x's type and T are both complex types"
    
    func _[X, T Complex](x X) T { return T(x) }
    func _[X, T Float | Complex](x X) T {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top