Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for Bind (0.07 sec)

  1. pilot/pkg/model/gateway.go

    func gatewayRDSRouteName(server *networking.Server, portNumber uint32, cfg config.Config) string {
    	p := protocol.Parse(server.Port.Protocol)
    	bind := ""
    	if server.Bind != "" {
    		bind = "." + server.Bind
    	}
    	if p.IsHTTP() {
    		return "http" + "." + strconv.Itoa(int(portNumber)) + bind // Format: http.%d.%s
    	}
    
    	if p == protocol.HTTPS && !gateway.IsPassThroughServer(server) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    		//
    		// If captureMode is not NONE, i.e., bindToPort is false, then
    		// we will bind to user specified IP (if any) or to the VIPs of services in
    		// this egress listener.
    		if egressListener.IstioListener != nil && egressListener.IstioListener.Bind != "" {
    			bind.binds = []string{egressListener.IstioListener.Bind}
    		} else if bind.bindToPort {
    			bind.binds = actualLocalHosts
    		}
    
    		if egressListener.IstioListener != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                    Binding<Object> bind = ReflectionUtils.bindingFromMethod(method).scope(scope);
                    for (Type t : Types.getAllSuperTypes(returnType)) {
                        if (types == null || types.contains(Types.getRawType(t))) {
                            bind(Key.ofType(t, qualifier), bind);
                            if (qualifier != null) {
                                bind(Key.ofType(t), bind);
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K 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. pkg/volume/util/volumepathhandler/volume_path_handler.go

    		// TODO: Need to check if this device file is actually the expected bind mount
    		if file.Mode()&os.ModeDevice == os.ModeDevice {
    			klog.Warningf("Warning: Map skipped because bind mount already exist on the path: %v", linkPath)
    			return nil
    		}
    
    		klog.Warningf("Warning: file %s is already exist but not mounted, skip creating file", linkPath)
    	}
    
    	// Bind mount file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScopeModule.java

            bind(SessionScope.class).toInstance(scope);
    
            bind(MavenSession.class)
                    .toProvider(SessionScope.seededKeyProvider(MavenSession.class))
                    .in(scope);
            bind(Session.class)
                    .toProvider(SessionScope.seededKeyProvider(Session.class))
                    .in(scope);
            bind(InternalMavenSession.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/guava-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/guava/BindingsBuilderExtensions.kt

     * 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.internal.serialize.codecs.guava
    
    import org.gradle.internal.serialize.graph.codecs.BindingsBuilder
    
    
    fun BindingsBuilder.guavaTypes() {
        bind(ImmutableListCodec)
        bind(ImmutableSetCodec)
        bind(ImmutableMapCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 859 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/structuring-software-projects/server-application/app/src/main/java/com/example/myproduct/server/MyProductAdminController.java

    import com.example.myproduct.admin.config.VersionRange;
    
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.ModelAttribute;
    import org.springframework.web.bind.annotation.PostMapping;
    
    @Controller
    public class MyProductAdminController {
    
        @GetMapping("/admin")
        public String adminForm(Model model) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 903 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. 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)
Back to top