Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 736 for block64 (0.26 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    		// sent to the Sink. Deep copy and send the copy to the queue.
    		event := e.DeepCopy()
    
    		select {
    		case b.buffer <- event:
    		default:
    			sendErr = fmt.Errorf("audit buffer queue blocked")
    			return true
    		}
    	}
    	return true
    }
    
    func (b *bufferedBackend) String() string {
    	return fmt.Sprintf("%s<%s>", PluginName, b.delegateBackend)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SendPartialResponseThenBlock.java

            }
        }
    
        @Override
        public void release() {
            lock.lock();
            try {
                if (!requestStarted) {
                    throw new IllegalStateException("Response is not blocked, should call waitUntilBlocked() first.");
                }
                released = true;
                condition.signalAll();
            } finally {
                lock.unlock();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

            msgs.add("* but aggregator Mojos require exclusive access to reactor to   *");
            msgs.add("* prevent race conditions. This mojo execution will be blocked  *");
            msgs.add("* until the aggregator work is done.                            *");
            msgs.add("*****************************************************************");
    
            assertEquals(
                    msgs,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/syscall/js/func.go

    // Other wrapped functions which are triggered during a call from Go to JavaScript
    // get executed on the same goroutine.
    //
    // As a consequence, if one wrapped function blocks, JavaScript's event loop
    // is blocked until that function returns. Hence, calling any async JavaScript
    // API, which requires the event loop, like fetch (http.Client), will cause an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/parse.go

    	"strings"
    )
    
    /*
    
    list block itself does not appear on stack?
    item does
    end of item returns block,
    new item continues previous block if possible?
    
    if close leaves lines or blocks behind, panic
    
    close(b a list item, parent)
    	if b's parent's last block is list && item can be added to it, do so
    	else return new list
    
    or maybe not parent but just current list of blocks
    
    preserve LinkRefDefs?
    
    */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/internal/chacha8rand/chacha8_generic.go

    // produce 1024 bytes of output (16 blocks, with counters 0 to 15).
    // First, for each block, the values 0x61707865, 0x3320646e, 0x79622d32,
    // 0x6b206574 are subtracted from the 32-bit little-endian words at
    // position 0, 1, 2, and 3 respectively, and an increasing counter
    // starting at zero is subtracted from each word at position 12. Then,
    // this stream is permuted such that for each sequence of four blocks,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionBlocksSummaryRenderer.java

            parent.appendChild(section);
    
            Element title = document.createElement("title");
            section.appendChild(title);
            title.appendChild(document.createTextNode("Script blocks added by the "));
            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(extension.getPluginId()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. src/net/net_test.go

    			return
    		}
    		err = peer2(c2.(*TCPConn))
    		c2.Close()
    		errc <- err
    	}()
    	for i := 0; i < 2; i++ {
    		if err := <-errc; err != nil {
    			t.Error(err)
    		}
    	}
    }
    
    // Tests that a blocked Read is interrupted by a concurrent SetReadDeadline
    // modifying that Conn's read deadline to the past.
    // See golang.org/cl/30164 which documented this. The net/http package
    // depends on this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LexerTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class LexerTest {
    
        @Test
        fun `extracts comments, annotations and top-level blocks`() {
    
            assertThat(
                lex(
                    "/* ... @TaskAction ... */" +
                        "\n// ... @Suppress(\"unused_variable\")" +
                        "\nbuildscript { /*" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlValidationTest.groovy

        }
    
        def "identifies illegal character"() {
            expect:
            //	Char	   ::=   	#x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]
            //	/* any Unicode character, excluding the surrogate blocks, FFFE, and FFFF. */
            !XmlValidation.isLegalCharacter(character)
    
            where:
            character      | _
            0x8            | _
            0xb            | _
            0xf            | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 22 14:56:07 UTC 2019
    - 3.5K bytes
    - Viewed (0)
Back to top