Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for bindTo (0.11 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeModule.java

            bind(MojoExecutionScope.class).toInstance(scope);
            bind(MavenProject.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider())
                    .in(scope);
            bind(MojoExecution.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider())
                    .in(scope);
            bind(Log.class).toProvider(MojoExecutionScope.seededKeyProvider()).in(scope);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. releasenotes/notes/43775.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/43775
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 16:58:21 UTC 2023
    - 305 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

        val kmType: KmType
            get() = newClassTypeOf(internalName.value)
    }
    
    
    internal
    fun IO.writeClassFileTo(binDir: File, internalClassName: InternalName, classBytes: ByteArray) {
        val classFile = binDir.resolve("$internalClassName.class")
        writeFile(classFile, classBytes)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. pkg/flag/flag.go

    type Flaggable interface {
    	string | bool | uint16 | time.Duration
    }
    
    var replacer = strings.NewReplacer("-", "_")
    
    // Bind registers a flag to the FlagSet. When parsed, the value will be set via pointer.
    // Usage:
    //
    //	cfg := Config{Foo: "default-foo"}
    //	flag.Bind(fs, "foo", "f", "the foo value", &cfg.Foo)
    func Bind[T Flaggable](fs *pflag.FlagSet, name, shorthand, usage string, val *T) {
    	switch d := any(val).(type) {
    	case *string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. releasenotes/notes/43688.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/43688
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:19 UTC 2023
    - 312 bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/metrics/metrics.go

    )
    
    // VolumeSchedulerSubsystem - subsystem name used by scheduler
    const VolumeSchedulerSubsystem = "scheduler_volume"
    
    var (
    	// VolumeBindingRequestSchedulerBinderCache tracks the number of volume binder cache operations.
    	VolumeBindingRequestSchedulerBinderCache = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      VolumeSchedulerSubsystem,
    			Name:           "binder_cache_requests_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 23 12:18:16 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourcePattern.java

        /**
         * Checks if the given identifier contains sufficient information to bind the tokens in this pattern.
         */
        boolean isComplete(ModuleIdentifier moduleIdentifier);
    
        /**
         * Checks if the given identifier contains sufficient information to bind the tokens in this pattern.
         */
        boolean isComplete(ModuleComponentIdentifier componentIdentifier);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/extender.go

    	Prioritize(pod *v1.Pod, nodes []*NodeInfo) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error)
    
    	// Bind delegates the action of binding a pod to a node to the extender.
    	Bind(binding *v1.Binding) error
    
    	// IsBinder returns whether this extender is configured for the Bind method.
    	IsBinder() bool
    
    	// IsInterested returns true if at least one extended resource requested by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. cni/pkg/repair/netns.go

    // under the procfs, /proc/<pid>/ns/net. In majority of cases, this is not used directly, but is rather bind mounted to
    // /var/run/netns/<name>. However, this pattern is not ubiquitous. Some platforms bind mount to other places. As we run
    // in a pod, we cannot just access any arbitrary file they happen to bind mount in, as we don't know ahead of time where
    // it might be.
    //
    // Instead, we rely directly on the procfs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/net/sock_posix.go

    	var lsa syscall.Sockaddr
    	var err error
    	if laddr != nil {
    		if lsa, err = laddr.sockaddr(fd.family); err != nil {
    			return err
    		} else if lsa != nil {
    			if err = syscall.Bind(fd.pfd.Sysfd, lsa); err != nil {
    				return os.NewSyscallError("bind", err)
    			}
    		}
    	}
    	var rsa syscall.Sockaddr  // remote address from the user
    	var crsa syscall.Sockaddr // remote address we actually connected to
    	if raddr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top