Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for describeTo (0.3 sec)

  1. pilot/pkg/model/push_context_test.go

    	ps.initSidecarScopes(env)
    	cases := []struct {
    		proxy    *Proxy
    		labels   labels.Instance
    		sidecar  string
    		describe string
    	}{
    		{
    			proxy:    &Proxy{Type: SidecarProxy, ConfigNamespace: "default"},
    			labels:   labels.Instance{"app": "foo"},
    			sidecar:  "default/foo",
    			describe: "match local sidecar",
    		},
    		{
    			proxy:    &Proxy{Type: SidecarProxy, ConfigNamespace: "default"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message TelemetryV2StackDriverConfig {
      google.protobuf.BoolValue enabled = 1;
    }
    
    // PilotConfigSource describes information about a configuration store inside a
    // mesh. A single control plane instance can interact with one or more data
    // sources.
    message PilotConfigSource {
      // Describes the source of configuration, if nothing is specified default is MCP.
      repeated string subscribedResources = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    The AMQP configuration is located under the sub-system `notify_amqp` top-level key. Create a configuration key-value pair here for your AMQP instance. The key is a name for your AMQP endpoint, and the value is a collection of key-value parameters described in the table below.
    
    ```
    KEY:
    notify_amqp[:name]  publish bucket notifications to AMQP endpoints
    
    ARGS:
    url*           (url)       AMQP server endpoint e.g. `amqp://myuser:mypassword@localhost:5672`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    WARNING: Using the `Project.copy` method at execution time, as described here, is not compatible with the <<configuration_cache.adoc#config_cache:requirements:use_project_during_execution,configuration cache>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    // top of this file.
    type typePointers struct {
    	// elem is the address of the current array element of type typ being iterated over.
    	// Objects that are not arrays are treated as single-element arrays, in which case
    	// this value does not change.
    	elem uintptr
    
    	// addr is the address the iterator is currently working from and describes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    		check.convertUntyped(x, y.typ)
    		if x.mode == invalid {
    			return
    		}
    		check.convertUntyped(y, x.typ)
    		if y.mode == invalid {
    			x.mode = invalid
    			return
    		}
    	}
    }
    
    // exprKind describes the kind of an expression; the kind
    // determines if an expression is valid in 'statement context'.
    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if !c.ready.check() {
    			// If Cache is not initialized, delegate Get requests to storage
    			// as described in https://kep.k8s.io/4568
    			return c.storage.Get(ctx, key, opts, objPtr)
    		}
    	}
    
    	// If resourceVersion is specified, serve it from cache.
    	// It's guaranteed that the returned value is at least that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>A property of the project whose value is a closure. The closure is treated as a method and called with the provided parameters.
     * The property is located as described above.</li>
     *
     * </ul>
     */
    @HasInternalProtocol
    public interface Project extends Comparable<Project>, ExtensionAware, PluginAware {
        /**
         * The default project build file name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    		check.convertUntyped(x, y.typ)
    		if x.mode == invalid {
    			return
    		}
    		check.convertUntyped(y, x.typ)
    		if y.mode == invalid {
    			x.mode = invalid
    			return
    		}
    	}
    }
    
    // exprKind describes the kind of an expression; the kind
    // determines if an expression is valid in 'statement context'.
    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    import (
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // An Error describes a failure to parse a regular expression
    // and gives the offending expression.
    type Error struct {
    	Code ErrorCode
    	Expr string
    }
    
    func (e *Error) Error() string {
    	return "error parsing regexp: " + e.Code.String() + ": `" + e.Expr + "`"
    }
    
    // An ErrorCode describes a failure to parse a regular expression.
    type ErrorCode string
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top