Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for onChange (0.18 sec)

  1. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

                onAccess.accept(key, value)
            }
    
            @Override
            void onChange(Object key, @Nullable Object newValue) {
                onChange.accept(key, newValue)
            }
    
            @Override
            void onRemove(Object key) {
                onRemove.accept(key)
            }
    
            @Override
            void onClear() {
                onClear.run()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             * like {@link Properties#setProperty(String, String)} provide information about the previous value and trigger this method.
             * All modifying operations call this method prior to {@link #onChange(Object, Object)}, {@link #onRemove(Object)} or {@link #onClear()}.
             * <p>
             * When this method is called because of the modifying operation, the state of the observed Properties object is undefined for the duration of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            }
        }
    
        class TestResource {
            final TestFile backingFile
            private final Closure onChange
    
            TestResource(TestFile backingFile, Closure onChange = {}) {
                this.backingFile = backingFile
                this.onChange = onChange
            }
    
            void replaceContents(String contents) {
                backingFile.withWriter { w ->
                    w << contents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

            then:
            0 * listener.onChange(_, _)
        }
    
        def "replaceAll() uses reference equality for non-primitives"() {
            def value1 = [1]
            def value2 = [1]
    
            def map = getMapUnderTestToWrite(value: value1)
            when:
            map.replaceAll { k, v ->
                return value2
            }
    
            then:
            1 * listener.onChange("value", value2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/cover/html.go

    		var visible;
    		files.addEventListener('change', onChange, false);
    		function select(part) {
    			if (visible)
    				visible.style.display = 'none';
    			visible = document.getElementById(part);
    			if (!visible)
    				return;
    			files.value = part;
    			visible.style.display = 'block';
    			location.hash = part;
    		}
    		function onChange() {
    			select(files.value);
    			window.scrollTo(0, 0);
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

                        systemPropertyQueried(convertToString(key), convertToString(value), consumer);
                    }
                }
    
                @Override
                public void onChange(Object key, Object newValue) {
                    listener().systemPropertyChanged(key, newValue, consumer);
                }
    
                @Override
                public void onRemove(Object key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    			`<img onload="alert(&#34;loaded&#34;)">`,
    		},
    		{
    			"bad dynamic attribute name 1",
    			// Allow checked, selected, disabled, but not JS or
    			// CSS attributes.
    			`<input {{"onchange"}}="{{"doEvil()"}}">`,
    			`<input ZgotmplZ="doEvil()">`,
    		},
    		{
    			"bad dynamic attribute name 2",
    			`<div {{"sTyle"}}="{{"color: expression(alert(1337))"}}">`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/context.go

    	nFirst := (e[1] >> lengthBits) & lengthMask
    	if nTitle := e[1] & lengthMask; nTitle != noChange {
    		if nFirst != noChange {
    			e = e[nFirst:]
    		}
    		return c.writeString(e[offset : offset+nTitle])
    	}
    	if ct == cLower && nFirst != noChange {
    		// Use the uppercase version instead.
    		return c.writeString(e[offset : offset+nFirst])
    	}
    	// Already in correct case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/colocate_tpu_copy_with_dynamic_shape.cc

        const auto *otherDevice = reinterpret_cast<const Device *>(&other);
        if (otherDevice->device_) {
          return SetDevice(otherDevice->device_);
        }
        return ChangeResult::NoChange;
      }
    
      void print(raw_ostream &os) const override {
        if (device_) {
          os << "<" << device_ << ">";
        } else {
          os << "<no device>";
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 00:30:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const selectorEl=document.createElement('select');selectorEl.addEventListener('change',onChange);for(let i=0;i<items.length;i++){const item=items[i];const optionEl=document.createElement('option');Polymer.dom(optionEl).textContent=item.label;optionEl.targetPropertyValue=item.value;optionEl.item=item;Polymer.dom(selectorEl).appendChild(optionEl);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top