Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for Bind (0.08 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/scheduler/apis/config/v1/default_plugins.go

    	defaultPlugins.Permit = mergePluginSet(logger, defaultPlugins.Permit, customPlugins.Permit)
    	defaultPlugins.PreBind = mergePluginSet(logger, defaultPlugins.PreBind, customPlugins.PreBind)
    	defaultPlugins.Bind = mergePluginSet(logger, defaultPlugins.Bind, customPlugins.Bind)
    	defaultPlugins.PostBind = mergePluginSet(logger, defaultPlugins.PostBind, customPlugins.PostBind)
    	return defaultPlugins
    }
    
    type pluginIndex struct {
    	index  int
    	plugin v1.Plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/examples/multipoint/multipoint.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 multipoint
    
    import (
    	"context"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    // FindGlobalMapPathUUIDFromPod finds {pod uuid} bind mount under globalMapPath
    // corresponding to map path symlink, and then return global map path with pod uuid.
    // (See pkg/volume/volume.go for details on a global map path and a pod device map path.)
    // ex. mapPath symlink: pods/{podUid}}/{DefaultKubeletVolumeDevicesDirName}/{escapeQualifiedPluginName}/{volumeName} -> /dev/sdX
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    func Stat(path string, edir []byte) (n int, err error) {
    	fixwd()
    	return stat(path, edir)
    }
    
    //sys	bind(name string, old string, flag int) (err error)
    
    func Bind(name string, old string, flag int) (err error) {
    	fixwd()
    	return bind(name, old, flag)
    }
    
    //sys	mount(fd int, afd int, old string, flag int, aname string) (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  6. docs_src/sql_databases/sql_app_py310/database.py

    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 461 bytes
    - Viewed (0)
  7. docs_src/sql_databases/sql_app_py39/database.py

    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 461 bytes
    - Viewed (0)
  8. docs_src/sql_databases/sql_app/database.py

    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Apr 05 11:53:09 UTC 2020
    - 461 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top