Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for keynote (0.49 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

    import org.apache.maven.model.Profile;
    
    /**
     * Collects the output of the model builder.
     *
     */
    public interface ModelBuildingResult {
    
        /**
         * Gets the sequence of model identifiers that denote the lineage of models from which the effective model was
         * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/term/terminal.go

    	keyEnter     = '\r'
    	keyEscape    = 27
    	keyBackspace = 127
    	keyUnknown   = 0xd800 /* UTF-16 surrogate area */ + iota
    	keyUp
    	keyDown
    	keyLeft
    	keyRight
    	keyAltLeft
    	keyAltRight
    	keyHome
    	keyEnd
    	keyDeleteWord
    	keyDeleteLine
    	keyClearScreen
    	keyPasteStart
    	keyPasteEnd
    )
    
    var (
    	crlf       = []byte{'\r', '\n'}
    	pasteStart = []byte{keyEscape, '[', '2', '0', '0', '~'}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

    /**
     * Result of a project build call.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ModelBuilderResult {
    
        /**
         * Gets the sequence of model identifiers that denote the lineage of models from which the effective model was
         * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/vnd.apple.iwork">
        <sub-class-of type="application/zip"/>
      </mime-type>
      <mime-type type="application/vnd.apple.keynote">
        <root-XML localName="presentation" namespaceURI="http://developer.apple.com/namespaces/keynote2" />
        <sub-class-of type="application/vnd.apple.iwork" />
        <glob pattern="*.key"/>
      </mime-type>
      <mime-type type="application/vnd.apple.mpegurl">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. src/math/big/doc.go

    	Int    signed integers
    	Rat    rational numbers
    	Float  floating-point numbers
    
    The zero value for an [Int], [Rat], or [Float] correspond to 0. Thus, new
    values can be declared in the usual ways and denote 0 without further
    initialization:
    
    	var x Int        // &x is an *Int of value 0
    	var r = &Rat{}   // r is a *Rat of value 0
    	y := new(Float)  // y is a *Float of value 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. pilot/pkg/config/file/store.go

    		// Or i + 1 has contents, which means "key:\n  value...", then perform one more DFS search
    		keyNode := nodeContent[i]
    		valueNode := nodeContent[i+1]
    		pathKeyForMap := fmt.Sprintf("%s.%s", curPath, keyNode.Value)
    
    		switch {
    		case valueNode.Kind == yamlv3.ScalarNode:
    			// Can build map because the value node has no content anymore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/go/parser/resolver_test.go

    // label to use for the location.  Declaration labels must be unique within the
    // file, and use labels must refer to an existing declaration label. It's OK
    // for a comment to denote both the declaration and use of a label (e.g.
    // '=@foo'). Leading and trailing whitespace is ignored. Any comment not
    // beginning with '=' or '@' is ignored.
    func TestResolution(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/modules.txt

    golang.org/x/arch/arm/armasm
    golang.org/x/arch/arm64/arm64asm
    golang.org/x/arch/ppc64/ppc64asm
    golang.org/x/arch/x86/x86asm
    # golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    golang.org/x/mod/module
    golang.org/x/mod/semver
    golang.org/x/mod/sumdb
    golang.org/x/mod/sumdb/dirhash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/go/ast/scope.go

    //	Con     int               iota for the respective declaration
    //
    // Deprecated: The relationship between Idents and Objects cannot be
    // correctly computed without type information. For example, the
    // expression T{K: 0} may denote a struct, map, slice, or array
    // literal, depending on the type of T. If T is a struct, then K
    // refers to a field of T, whereas for the other types it refers to a
    // value in the environment.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    	return true
    }
    
    // isTyped reports whether t is typed; i.e., not an untyped
    // constant or boolean.
    // Safe to call from types that are not fully set up.
    func isTyped(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b == nil || b.info&IsUntyped == 0
    }
    
    // isUntyped(t) is the same as !isTyped(t).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top