Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for expandKey (0.13 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    	for _, e := range f.getExtensionPoints(profile.Plugins) {
    		if err := updatePluginList(e.slicePtr, *e.plugins, f.pluginsMap); err != nil {
    			return nil, err
    		}
    	}
    
    	// initialize multiPoint plugins to their expanded extension points
    	if len(profile.Plugins.MultiPoint.Enabled) > 0 {
    		if err := f.expandMultiPointPlugins(logger, profile); err != nil {
    			return nil, err
    		}
    	}
    
    	if len(f.queueSortPlugins) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    				Result: simulation.Result{
    					RouteMatched:   "route1",
    					ClusterMatched: "outbound|80||concrete.default.svc.cluster.local",
    				},
    			},
    			{
    				// Host is expanded
    				Name: "HTTP virtual service does apply to alias without exact match",
    				Call: simulation.Call{Address: "1.2.3.4", Port: 80, Protocol: simulation.HTTP, HostHeader: "alias.default", Path: "/one"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * computing size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
        /**
         * The table is expanded when its size exceeds this threshold. (The value of this field is
         * always {@code (int) (capacity * 0.75)}.)
         */
        int threshold;
    
        /** The per-segment table. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * computing size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
        /**
         * The table is expanded when its size exceeds this threshold. (The value of this field is
         * always {@code (int) (capacity * 0.75)}.)
         */
        int threshold;
    
        /** The per-segment table. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    .docs-navigation>ul ul,
    .docs-navigation>ul ul ul {
    	display: none;
    	height: 0;
    	margin-left: 1rem;
    }
    
    .docs-navigation>ul ul:target,
    .docs-navigation>ul ul:target ul,
    .docs-navigation>ul .nav-dropdown.expanded~ul {
    	display: block;
    	height: auto;
    }
    
    .docs-navigation h3 {
    	font-size: .95rem;
    	font-weight: 600;
    	line-height: 1.5;
    	margin: 1.5em 0 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      }
      # Turning the kube-env values into environment variables is not required but
      # it makes debugging this script easier, and it also makes the syntax a lot
      # easier (${env:K8S_DIR} can be expanded within a string but
      # ${kube_env}['K8S_DIR'] cannot be afaik).
      $env_vars = @{
        "K8S_DIR" = ${kube_env}['K8S_DIR']
        # Typically 'C:\etc\kubernetes\node\bin' (not just 'C:\etc\kubernetes\node')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You can pass in property names and values that are then expanded in the source files. `expand()` allows for more than basic token substitution as the embedded expressions are full-blown Groovy expressions.
    
    NOTE: Specifying the character set when reading and writing the file is good practice.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // reference to that substitution refers to the template parameter
    // with the same index in the currently active template, not to
    // whatever the template parameter would be expanded to here.  We sort
    // this out in substitution and simplify.
    func (st *state) templateParam() AST {
    	off := st.off
    	str := st.str
    	st.checkChar('T')
    
    	level := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top