Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Bind (0.07 sec)

  1. pkg/volume/util/subpath/subpath_linux.go

    			}
    		}
    	}()
    
    	kubeletPid := os.Getpid()
    	mountSource := fmt.Sprintf("/proc/%d/fd/%v", kubeletPid, fd)
    
    	// Do the bind mount
    	options := []string{"bind"}
    	mountFlags := []string{"--no-canonicalize"}
    	klog.V(5).Infof("bind mounting %q at %q", mountSource, bindPathTarget)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.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. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

            def requestXml = new StreamingMarkupBuilder().bind {
                CompleteMultipartUpload(xmlns: "http://s3.amazonaws.com/doc/2006-03-01/") {
                    Part() {
                        PartNumber(1)
                        ETag(calculateEtag(file))
                    }
                }
            }
            def url = "/${bucketName}/${keyName}"
            def responseXml = new StreamingMarkupBuilder().bind {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim does not bind PVC to non-available PV if it's not pre-bind
    			name: "1-17 - skip non-available PV if it's not pre-bind",
    			initialVolumes: []*v1.PersistentVolume{
    				newVolume("volume1-17-pending", "1Gi", "", "", v1.VolumePending, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  6. 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)
  7. pkg/flag/flag_test.go

    		A, B, C string
    		Env     string
    		Bool    bool
    	}
    	opts := Options{
    		B: "b-def",
    	}
    	test.SetEnvForTest(t, "TEST_ENV", "from-env")
    	fs := pflag.NewFlagSet("test", pflag.ContinueOnError)
    	Bind(fs, "a", "", "desc", &opts.A)
    	Bind(fs, "bool", "", "desc", &opts.Bool)
    	BindEnv(fs, "test-env", "", "desc", &opts.Env)
    	fs.Set("a", "a-set")
    	fs.Set("bool", "true")
    	assert.Equal(t, opts, Options{
    		A:    "a-set",
    		B:    "b-def",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. pkg/volume/fc/disk_manager.go

    		return err
    	}
    	// Perform a bind mount to the full path to allow duplicate mounts of the same disk.
    	options := []string{"bind"}
    	if b.readOnly {
    		options = append(options, "ro")
    	}
    	mountOptions := util.JoinMountOptions(options, b.mountOptions)
    	err = mounter.MountSensitiveWithoutSystemd(globalPDPath, volPath, "", mountOptions, nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/framework_helpers.go

    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "PreScore")
    }
    
    // RegisterBindPlugin returns a function to register a Bind Plugin to a given registry.
    func RegisterBindPlugin(pluginName string, pluginNewFunc runtime.PluginFactory) RegisterPluginFunc {
    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "Bind")
    }
    
    // RegisterPluginAsExtensions returns a function to register a Plugin as given extensionPoints to a given registry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/mounter-defaults.go

    func (f *mounterDefaults) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.Warning(logPrefix(f.plugin), "using default SetUpAt to ", dir)
    
    	src, err := f.plugin.getDeviceMountPath(f.spec)
    	if err != nil {
    		return err
    	}
    
    	if err := doMount(f.mounter, src, dir, "auto", []string{"bind"}); err != nil {
    		return err
    	}
    
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 15:56:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top