Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,160 for grouped (0.12 sec)

  1. src/cmd/compile/internal/syntax/testdata/issue49205.go

    }
    
    // other cases where the fix for this issue affects the error message
    
    const (
    	x int = 10 /* ERROR unexpected literal "foo" in grouped declaration; possibly missing semicolon or newline or \) */ "foo"
    )
    
    var _ = []int{1, 2, 3 /* ERROR unexpected name int in composite literal; possibly missing comma or } */ int }
    
    type _ struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. src/go/doc/testdata/d1.go

    	VB0 int // at end
    )
    
    const (
    	// Single const declarations inside ()'s are considered ungrouped
    	// and show up in sorted order.
    	Cungrouped = 0
    )
    
    var (
    	// Single var declarations inside ()'s are considered ungrouped
    	// and show up in sorted order.
    	Vungrouped = 0
    )
    
    // T2 should be third.
    type T2 struct{}
    
    // Grouped types are sorted nevertheless.
    type (
    	// TG2 should be third.
    	TG2 struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.h

    #include "tensorflow/compiler/jit/compilability_check_util.h"
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // Marks a subset of nodes in the graph which are to be clustered
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractGroupedProjectConfigureLoggingFunctionalTest.groovy

    import org.gradle.integtests.fixtures.executer.LogContent
    
    abstract class AbstractGroupedProjectConfigureLoggingFunctionalTest extends AbstractConsoleGroupedTaskFunctionalTest {
        def "project configuration messages are grouped"() {
            given:
            settingsFile << """
                include 'a', 'b'
            """
            buildFile << """
                println "root project"
                // Some nested build operations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/resource/local/GroupedAndNamedUniqueFileStore.java

        private final Grouper<K> grouper;
        private final Namer<K> namer;
        private final FileAccessTracker checksumDirAccessTracker;
        private final File baseDir;
        private final ChecksumService checksumService;
    
        public GroupedAndNamedUniqueFileStore(File baseDir, TemporaryFileProvider temporaryFileProvider, FileAccessTimeJournal fileAccessTimeJournal, Grouper<K> grouper, Namer<K> namer, ChecksumService checksumService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

            and:
            def pageErrors = []
            def activeGroup = selectInnerTextOf(
                configurationCacheReport,
                "div.group-selector.group-selector--active",
                { pageErrors.add(it) }
            )
            pageErrors == []
            activeGroup == "Problems grouped by message1"
        }
    
        private String selectInnerTextOf(File configurationCacheReport, String selector, Consumer<String> onPageError) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/info.go

    // manage breaks. See TODO comment above.
    //
    // Note 3: according to the spec, it is possible for the Extend category to
    // introduce breaks between other categories grouped in Letter. However, this
    // is undesirable for our purposes. ICU prevents breaks in such cases as well.
    
    // isBreak returns whether this rune should introduce a break.
    func (c info) isBreak() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * <p>
     * Permissions are grouped into 3 distinct categories (representing different classes of users):
     * <ul>
     *     <li>OWNER (user) permissions: what actions the owner of the file/directory can perform on the file/directory</li>
     *     <li>GROUP permissions: what actions a user, who is a member of the group that a file/directory belongs to, can perform on the file/directory</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/math/arith_s390x.go

    import "internal/cpu"
    
    func expTrampolineSetup(x float64) float64
    func expAsm(x float64) float64
    
    func logTrampolineSetup(x float64) float64
    func logAsm(x float64) float64
    
    // Below here all functions are grouped in stubs.go for other
    // architectures.
    
    const haveArchLog10 = true
    
    func archLog10(x float64) float64
    func log10TrampolineSetup(x float64) float64
    func log10Asm(x float64) float64
    
    const haveArchCos = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

    function postProcessCodeBlocks() {
      // Assumptions:
      //  1) All siblings that are marked with class="multi-language-sample" should be grouped
      //  2) Only one language can be selected per domain (to allow selection to persist across all docs pages)
      //  3) There is exactly 1 small set of languages to choose from. This does not allow for multiple language preferences. For example, users cannot prefer both Kotlin and ZSH.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top