Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.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.api.internal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    a,b,c){"use strict";var d=0;a.fn.validateOnBlur=function(b,c){var d=this,e=this.find("*[data-validation]");return e.each(function(){var e=a(this);if(e.is("[type=radio]")){var f=d.find('[type=radio][name="'+e.attr("name")+'"]');f.bind("blur.validation",function(){e.validateInputOnBlur(b,c,!0,"blur")}),c.validateCheckboxRadioOnClick&&f.bind("click.validation",function(){e.validateInputOnBlur(b,c,!0,"click")})}}),e.bind("blur.validation",function(){a(this).validateInputOnBlur(b,c,!0,"blur")}),c.val...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/html5.js

    nd"),b||f.filter("input[placeholder]").each(function(){this.__defaultValue=this.getAttribute("placeholder"),a(this).bind("focus",function(){this.value===this.__defaultValue&&(this.value="",a(this).removeClass("showing-placeholder"))}).bind("blur",function(){""===a.trim(this.value)&&(this.value=this.__defaultValue,a(this).addClass("showing-placeholder"))})})})};a.formUtils.$win.bind("validatorsLoaded formValidationSetup",function(b,c){c||(c=a("form")),e(c)}),a.formUtils.setupValidationUsingHTML5Attr=e}(a,window)});...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top