Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,027 for Bind (0.04 sec)

  1. cmd/kubeadm/app/util/staticpod/utils.go

    )
    
    const (
    	// kubeControllerManagerBindAddressArg represents the bind-address argument of the kube-controller-manager configuration.
    	kubeControllerManagerBindAddressArg = "bind-address"
    
    	// kubeSchedulerBindAddressArg represents the bind-address argument of the kube-scheduler configuration.
    	kubeSchedulerBindAddressArg = "bind-address"
    )
    
    var (
    	usersAndGroups     *users.UsersAndGroups
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pkg/volume/local/local.go

    		// skip below MkdirAll for windows since the "bind mount" logic is implemented differently in mount_wiondows.go
    		if err := os.MkdirAll(dir, 0750); err != nil {
    			klog.Errorf("mkdir failed on disk %s (%v)", dir, err)
    			return err
    		}
    	}
    	// Perform a bind mount to the full path to allow duplicate mounts of the same volume.
    	options := []string{"bind"}
    	if m.readOnly {
    		options = append(options, "ro")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation.go

    			"score":      profile.Plugins.Score,
    			"reserve":    profile.Plugins.Reserve,
    			"permit":     profile.Plugins.Permit,
    			"preBind":    profile.Plugins.PreBind,
    			"bind":       profile.Plugins.Bind,
    			"postBind":   profile.Plugins.PostBind,
    		}
    
    		pluginsPath := path.Child("plugins")
    		for s, p := range stagesToPluginSet {
    			errs = append(errs, validatePluginSetForInvalidPlugins(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/net/conf_test.go

    			},
    			resolv: &dnsConfig{lookup: []string{"bind", "file"}},
    			hostTests: []nssHostTest{
    				{"google.com", "myhostname", hostLookupDNSFiles},
    				{"foo.local", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name: "openbsd_lookup_file_bind",
    			c: &conf{
    				goos: "openbsd",
    			},
    			resolv:    &dnsConfig{lookup: []string{"file", "bind"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. pkg/volume/portworx/portworx.go

    		Managed:        !b.readOnly,
    		SELinuxRelabel: false,
    	}
    }
    
    // SetUp attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    // SetUpAt attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    				port.Number, builder.node.ID)
    			continue
    		}
    		var extraBind []string
    		bind := actualWildcards[0]
    		if features.EnableDualStack && len(actualWildcards) > 1 {
    			extraBind = actualWildcards[1:]
    		}
    		if len(port.Bind) > 0 {
    			bind = port.Bind
    			extraBind = nil
    		}
    
    		// NOTE: There is no gating here to check for the value of the QUIC feature flag. However,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.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.internal.remote.internal.inet
    
    import org.gradle.api.Action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

        buildServiceProviderCodec: Codec<BuildServiceProvider<*, *>>,
        flowProvidersCodec: Codec<BuildWorkResultProvider>
    ) = Bindings.of {
        bind(valueSourceProviderCodec)
        bind(buildServiceProviderCodec)
        bind(flowProvidersCodec)
        bind(BeanCodec)
    }.build()
    
    
    /**
     * This is not used directly when encoding or decoding the object graph. This codec takes care of substituting a provider whose
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/offline-mode.apt

      descriptor's requiredConnectivity field.
    
      * If <<<(offline == true) && (requiresOnline != true)>>>, bind
        the mojo to the lifecycle.
    
        In this case, the client is <<offline>>, and the mojo does not require
        online status.
    
      * If <<<(offline == false) && (requiresOnline == true)>>>, bind
        the mojo to the lifecycle.
    
        In this case, the client is <<online>>, and the mojo either requires
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    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 controlplane
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"reflect"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top