Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for Bind (0.08 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

         */
        public static Type bind(Type type, Map<TypeVariable<?>, Type> bindings) {
            return bind(type, bindings::get);
        }
    
        /**
         * Binds a given type with actual type arguments
         *
         * @param type     a type to be bound
         * @param bindings a lookup function for actual types
         */
        public static Type bind(Type type, Function<TypeVariable<?>, Type> bindings) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    		bind.AddUint8('_')
    		bind.Addstring(ldr.SymExtname(r.targ))
    
    		bind.AddUint8(BIND_OPCODE_DO_BIND)
    	}
    	bind.AddUint8(BIND_OPCODE_DONE)
    	sz = Rnd(bind.Size(), 16) // make it 16-byte aligned, see the comment in doMachoLink
    	bind.Grow(sz)
    	bind.SetSize(sz)
    
    	// TODO: export table.
    	// The symbols names are encoded as a trie. I'm really too lazy to do that
    	// for now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          }
        });
      }
    
      // Bind event on elem to fn.
      function bind(event, elem, fn) {
        if (elem == null) return;
        elem.addEventListener(event, fn);
        if (event == 'click') {
          // Also enable via touch.
          elem.addEventListener('touchstart', fn);
        }
      }
    
      bind('click', elem('save-config'), showSaveDialog);
      bind('click', elem('save-cancel'), cancelDialog);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/types.go

    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    	// Bind is a list of plugins that should be invoked at "Bind" extension point of the scheduling framework.
    	// The scheduler call these plugins in order. Scheduler skips the rest of these plugins as soon as one returns success.
    	Bind PluginSet
    
    	// PostBind is a list of plugins that should be invoked after a pod is successfully bound.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/interface.go

    }
    
    // BindPlugin is an interface that must be implemented by "Bind" plugins. Bind
    // plugins are used to bind a pod to a Node.
    type BindPlugin interface {
    	Plugin
    	// Bind plugins will not be called until all pre-bind plugins have completed. Each
    	// bind plugin is called in the configured order. A bind plugin may choose whether
    	// or not to handle the given Pod. If a bind plugin chooses to handle a Pod, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway_test.go

    			Servers: []*networking.Server{
    				{
    					Hosts: []string{host},
    					Port:  &networking.Port{Name: portName, Number: portNumber, Protocol: portProtocol},
    					Bind:  bind,
    					Tls:   &networking.ServerTLSSettings{Mode: mode},
    				},
    			},
    		},
    	}
    	return c
    }
    
    func BenchmarkParseGatewayRDSRouteName(b *testing.B) {
    	for range b.N {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_address.go

    	}
    
    	return passthroughBindIPAddresses
    }
    
    // getSidecarInboundBindIPs returns the IP that the proxy can bind to along with the sidecar specified port.
    // It looks for an unicast address, if none found, then the default wildcard address is used.
    // This will make the inbound listener bind to instance_ip:port instead of 0.0.0.0:port where applicable.
    func getSidecarInboundBindIPs(node *model.Proxy) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework_test.go

    		profile.Plugins.QueueSort.Enabled = append(profile.Plugins.QueueSort.Enabled, config.Plugin{Name: queueSortPlugin})
    	}
    	if len(profile.Plugins.Bind.Enabled) == 0 {
    		profile.Plugins.Bind.Enabled = append(profile.Plugins.Bind.Enabled, config.Plugin{Name: bindPlugin})
    	}
    	return NewFramework(ctx, r, &profile, opts...)
    }
    
    func TestInitFrameworkWithScorePlugins(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler_test.go

    							Bind:      schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "DefaultBinder"}}},
    						},
    					},
    					schedulerapi.KubeSchedulerProfile{
    						SchedulerName: "bar",
    						Plugins: &schedulerapi.Plugins{
    							QueueSort: schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "PrioritySort"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top