Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for quantification (0.22 sec)

  1. test/fixedbugs/issue14010.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that built-in types don't get printed with
    // (empty) package qualification.
    
    package main
    
    func main() {
    	true = false // ERROR "cannot assign to true|invalid left hand side"
    	byte = 0     // ERROR "not an expression|invalid left hand side|invalid use of type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 449 bytes
    - Viewed (0)
  2. CODEOWNERS

    /tests/integration/telemetry/                                    @istio/wg-policies-and-telemetry-maintainers
    /tests/integration/pilot/                                        @istio/wg-networking-maintainers
    /tests/integration/qualification/                                @istio/wg-test-and-release-maintainers
    /tests/integration/security/                                     @istio/wg-security-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/log/slog/logger.go

    	return c
    }
    
    // WithGroup returns a Logger that starts a group, if name is non-empty.
    // The keys of all attributes added to the Logger will be qualified by the given
    // name. (How that qualification happens depends on the [Handler.WithGroup]
    // method of the Logger's Handler.)
    //
    // If name is empty, WithGroup returns the receiver.
    func (l *Logger) WithGroup(name string) *Logger {
    	if name == "" {
    		return l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/fmt.go

    		b.WriteByte('.')
    	}
    	b.WriteString(name)
    }
    
    // pkgqual returns the qualifier that should be used for printing
    // symbols from the given package in the given mode.
    // If it returns the empty string, no qualification is needed.
    func pkgqual(pkg *Pkg, verb rune, mode fmtMode) string {
    	if pkg == nil {
    		return ""
    	}
    	if verb != 'S' {
    		switch mode {
    		case fmtGo: // This is for the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. src/log/slog/doc.go

    	programLevel.Set(slog.LevelDebug)
    
    # Groups
    
    Attributes can be collected into groups.
    A group has a name that is used to qualify the names of its attributes.
    How this qualification is displayed depends on the handler.
    [TextHandler] separates the group and attribute names with a dot.
    [JSONHandler] treats each group as a separate JSON object, with the group name as the key.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    In a regular build, Gradle ensures that each project has a unique _project path_.
    It makes projects identifiable and addressable without conflicts.
    
    In a composite build, Gradle adds additional qualification to each project from an included build to avoid project path conflicts.
    The full path to identify a project in a composite build is called a _build-tree path_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. doc/go_spec.html

    	</li>
    
    	<li>The type set of a <i>union</i> of terms
    		<code>t<sub>1</sub>|t<sub>2</sub>|…|t<sub>n</sub></code>
    		is the union of the type sets of the terms.
    	</li>
    </ul>
    
    <p>
    The quantification "the set of all non-interface types" refers not just to all (non-interface)
    types declared in the program at hand, but all possible types in all possible programs, and
    hence is infinite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  8. src/log/slog/handler.go

    	// the receiver's existing groups.
    	// The keys of all subsequent attributes, whether added by With or in a
    	// Record, should be qualified by the sequence of group names.
    	//
    	// How this qualification happens is up to the Handler, so long as
    	// this Handler's attribute keys differ from those of another Handler
    	// with a different sequence of group names.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/resolver.go

    	if imp.complete || imp.fake {
    		check.impMap[key] = imp
    		// Once we've formatted an error message, keep the pkgPathMap
    		// up-to-date on subsequent imports. It is used for package
    		// qualification in error messages.
    		if check.pkgPathMap != nil {
    			check.markImports(imp)
    		}
    		return imp
    	}
    
    	// something went wrong (importer may have returned incomplete package without error)
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/go/types/resolver.go

    	if imp.complete || imp.fake {
    		check.impMap[key] = imp
    		// Once we've formatted an error message, keep the pkgPathMap
    		// up-to-date on subsequent imports. It is used for package
    		// qualification in error messages.
    		if check.pkgPathMap != nil {
    			check.markImports(imp)
    		}
    		return imp
    	}
    
    	// something went wrong (importer may have returned incomplete package without error)
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top