Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for bfontain (0.49 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

       * removal operations, and these are reflected in the underlying map.
       *
       * <p>It's acceptable for the underlying map to contain null keys, and even null values provided
       * that the function is capable of accepting null input. The transformed map might contain null
       * values, if the function sometimes gives a null result.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

       * removal operations, and these are reflected in the underlying map.
       *
       * <p>It's acceptable for the underlying map to contain null keys, and even null values provided
       * that the function is capable of accepting null input. The transformed map might contain null
       * values, if the function sometimes gives a null result.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	parentPath, parentDir, parentRoot string
    	parentIsStd                       bool
    	mode                              int
    }
    
    // resolvedImport holds a canonical identifier for a package. It may also contain
    // a path to the package's directory and an error if one occurred. resolvedImport
    // is the value type in resolvedImportCache.
    type resolvedImport struct {
    	path, dir string
    	err       error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
    </pre>
    
    <p>
    There are two forms: expression switches and type switches.
    In an expression switch, the cases contain expressions that are compared
    against the value of the switch expression.
    In a type switch, the cases contain types that are compared against the
    type of a specially annotated switch expression.
    The switch expression is evaluated exactly once in a switch statement.
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"football":                             "\U0001f3c8",
    	"footprints":                           "\U0001f463",
    	"fork_and_knife":                       "\U0001f374",
    	"fortune_cookie":                       "\U0001f960",
    	"fountain":                             "\u26f2",
    	"fountain_pen":                         "\U0001f58b\ufe0f",
    	"four":                                 "4\ufe0f\u20e3",
    	"four_leaf_clover":                     "\U0001f340",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // will only match main packages.
    //
    // - No module is considered the "main" module. If the module containing
    // packages named on the command line has a go.mod file, it must not contain
    // directives (replace and exclude) that would cause it to be interpreted
    // differently than if it were the main module. The module must not require
    // a higher version of itself.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    				if ldr.SymName(s) == "runtime.etypes" {
    					// runtime.etypes must be at the end of
    					// the relro data.
    					isRelro = true
    				}
    			case sym.SGOFUNC:
    				// The only SGOFUNC symbols that contain relocations are .stkobj,
    				// and their relocations are of type objabi.R_ADDROFF,
    				// which always get resolved during linking.
    				isRelro = false
    			}
    			if isRelro {
    				state.setSymType(s, symnrelro)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

                  {@code war},
                  {@code ear},
                  {@code pom}.
                Plugins can create their own packaging, and
                therefore their own packaging types,
                so this list does not contain all possible types.
              </description>
              <type>String</type>
              <defaultValue>jar</defaultValue>
            </field>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    as follows. Overview The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages. Package Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories: Interfaces (italic) Classes Enums Exceptions Errors Annotation Types Class/Interface Each class, interface, nested class and nested interface...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    //
    // Return value is an updated output files list; in addition to the
    // regular outputs (instrumented source files) the cover tool also
    // writes a separate file (appearing first in the list of outputs)
    // that will contain coverage counters and meta-data.
    func (b *Builder) cover2(a *Action, infiles, outfiles []string, varName string, mode string) ([]string, error) {
    	pkgcfg := a.Objdir + "pkgcfg.txt"
    	covoutputs := a.Objdir + "coveroutfiles.txt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top