Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 463 for ACCEPT (0.49 sec)

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

            @Override
            void onAccess(Object key, @Nullable Object value) {
                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/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

                    visitor.accept(TestFiles.fileCollectionFactory().fixed(new File("2").absoluteFile))
                }
            }
            def collection = new TestCollection() {
                @Override
                protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
                    visitor.accept(child2)
                    visitor.accept(child3)
                }
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. pkg/util/iptables/testing/parse_test.go

    				-A KUBE-FORWARD -m conntrack --ctstate INVALID -j DROP
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    				COMMIT
    				*nat
    				:KUBE-SERVICES - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

                    return lock
            }
    
            then:
            1 * onOpen.accept(lock)
    
            then:
            1 * action.get() >> "result"
            0 * _
    
            when:
            contendedAction.accept(signal)
    
            then:
            1 * onClose.accept(lock)
            1 * lock.close()
            1 * signal.trigger()
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. src/unicode/utf8/utf8.go

    	// Status for the special one-byte case.
    	xx = 0xF1 // invalid: size 1
    	as = 0xF0 // ASCII: size 1
    	s1 = 0x02 // accept 0, size 2
    	s2 = 0x13 // accept 1, size 3
    	s3 = 0x03 // accept 0, size 3
    	s4 = 0x23 // accept 2, size 3
    	s5 = 0x34 // accept 3, size 4
    	s6 = 0x04 // accept 0, size 4
    	s7 = 0x44 // accept 4, size 4
    )
    
    // first is information about the first byte in a UTF-8 sequence.
    var first = [256]uint8{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

            acceptor?.stop()
        }
    
        def "acceptor stop blocks until accept action has completed"() {
            Action action = Mock()
    
            given:
            1 * action.execute(_) >> {
                instant.connected
                thread.block()
                instant.actionFinished
            }
    
            when:
            def acceptor = incomingConnector.accept(action, false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -		     : __builtin_strspn (s, accept))))))		      \
    -      : __builtin_strspn (s, accept)); })
    -#  else
    -#   define strspn(s, accept) \
    -  __extension__								      \
    -  ({ char __a0, __a1, __a2;						      \
    -     (__builtin_constant_p (accept) && __string2_1bptr_p (accept)	      \
    -      ? ((__a0 = ((const char *) (accept))[0], __a0 == '\0')		      \
    -	 ? ((void) (s), (size_t) 0)					      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  8. src/fmt/scan.go

    func (s *ss) floatToken() string {
    	s.buf = s.buf[:0]
    	// NaN?
    	if s.accept("nN") && s.accept("aA") && s.accept("nN") {
    		return string(s.buf)
    	}
    	// leading sign?
    	s.accept(sign)
    	// Inf?
    	if s.accept("iI") && s.accept("nN") && s.accept("fF") {
    		return string(s.buf)
    	}
    	digits := decimalDigits + "_"
    	exp := exponent
    	if s.accept("0") && s.accept("xX") {
    		digits = hexadecimalDigits + "_"
    		exp = "pP"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. pkg/util/iptables/testing/fake_test.go

    		:KUBE-RESTORED - [0:0]
    		:KUBE-MISC-CHAIN - [0:0]
    		:KUBE-MISC-TWO - [0:0]
    		:KUBE-EMPTY - [0:0]
    		-A KUBE-TEST -j ACCEPT
    		-A KUBE-RESTORED -m comment --comment "restored chain" -j ACCEPT
    		-A KUBE-MISC-CHAIN -s 1.2.3.4 -j KUBE-MISC-TWO
    		-A KUBE-MISC-CHAIN -d 5.6.7.8 -j MASQUERADE
    		-A KUBE-MISC-TWO -j ACCEPT
    		COMMIT
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		COMMIT
    		*mangle
    		COMMIT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                    If you did this intentionally, please accept the change and provide an explanation:
                    <a class="btn btn-info" role="button" data-toggle="collapse" href="#accept-${changeId}" aria-expanded="false" aria-controls="collapseExample">Accept this change</a>
                    <div class="collapse" id="accept-${changeId}">
                      <div class="well">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top