Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 348 for spreading (0.38 sec)

  1. src/cmd/go/note_test.go

    	if err != nil {
    		t.Fatalf("reading build ID from hello binary (linkmode=external): %v", err)
    	}
    	if id != buildID {
    		t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external)", id, buildID)
    	}
    
    	switch runtime.GOOS {
    	case "dragonfly", "freebsd", "linux", "netbsd", "openbsd":
    		// Test while forcing use of the gold linker, since in the past
    		// we've had trouble reading the notes generated by gold.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/StreamingBuildActionCrossVersionTest.groovy

            e.cause.message == "No streaming model listener registered."
            // Report that the build was successful, as the failure was on the client side
            assertHasConfigureSuccessfulLogging()
        }
    
        @TargetGradleVersion(">=3.0 <8.6")
        def "streaming fails when build action is running in a Gradle version that does not support streaming"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:20:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.text;
    
    /**
     * Provides streaming of styled text, that is, a stream of text with inline styling information. Implementations are not
     * required to be thread-safe.
     */
    public interface StyledTextOutput extends Appendable {
        enum Style {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java

                        final String term = termTokenList.get(i).getTerm();
                        String reading = readingTokenList.get(i).getTerm();
                        if (Strings.isNullOrEmpty(reading)) {
                            reading = term;
                        }
                        reading = transliterator.transliterate(reading);
    
                        final int pos = text.indexOf(term, offset);
                        if (pos > 0) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_proxy_list.txt

    env GOPROXY=$proxy/403,$proxy
    ! go get rsc.io/quote@v1.2.0
    stderr 'reading.*/403/rsc.io/.*: 403 Forbidden'
    
    # get should not walk past non-4xx errors if proxies are separated with ','.
    env GOPROXY=$proxy/500,$proxy
    ! go get rsc.io/quote@v1.3.0
    stderr 'reading.*/500/rsc.io/.*: 500 Internal Server Error'
    
    # get should walk past other 4xx errors if proxies are separated with '|'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables.cc

    #include "llvm/ADT/SmallVector.h"
    #include "mlir/IR/Block.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/Threading.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/session_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 19:14:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    The basics section goes through some Gradle authoring basics so that you can quickly understand how to configure builds, create tasks, and write plugins.
    
    [sidebar]
    _Training level_: **Intermediate** +
    _Reading time_: **35 minutes**
    
    The introduction covers:
    
    <<gradle_directories.adoc#gradle_directories,Part 1.>> Gradle Directories +
    <<intro_multi_project_builds.adoc#intro_multi_project_builds,Part 2.>> Multi-Project Builds +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/FailsafeStreamedValueListener.java

                    delegate.onValue(value);
                } catch (Throwable e) {
                    failure = new ListenerNotificationException(null, "Streaming model listener failed with an exception.", Collections.singletonList(e));
                }
            } else {
                failure = new IllegalStateException("No streaming model listener registered.");
            }
        }
    
        public void rethrowErrors() {
            if (failure != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/strings/reader.go

    // [io.RuneReader], [io.RuneScanner], [io.Seeker], and [io.WriterTo] interfaces by reading
    // from a string.
    // The zero value for Reader operates like a Reader of an empty string.
    type Reader struct {
    	s        string
    	i        int64 // current reading index
    	prevRune int   // index of previous rune; or < 0
    }
    
    // Len returns the number of bytes of the unread portion of the
    // string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.cc

    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(PassManager& pm, const std::string& dump_group_name,
                              llvm::StringRef module_name) {
      // Print the whole module after each pass, which requires disabling
      // multi-threading as well.
      pm.getContext()->disableMultithreading();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top