Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for keynote (0.11 sec)

  1. src/cmd/compile/internal/types2/selection.go

    package types2
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // SelectionKind describes the kind of a selector expression x.f
    // (excluding qualified identifiers).
    //
    // If x is a struct or *struct, a selector expression x.f may denote a
    // sequence of selection operations x.a.b.c.f. The SelectionKind
    // describes the kind of the final (explicit) operation; all the
    // previous (implicit) operations are always field selections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package relnote
    
    import (
    	"fmt"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/mod/module"
    	md "rsc.io/markdown"
    )
    
    // addSymbolLinks looks for text like [Buffer] and
    // [math.Max] and replaces them with links to standard library
    // symbols and packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/go/types/api.go

    	Instances map[*ast.Ident]Instance
    
    	// Defs maps identifiers to the objects they define (including
    	// package names, dots "." of dot-imports, and blank "_" identifiers).
    	// For identifiers that do not denote objects (e.g., the package name
    	// in package clauses, or symbolic variables t in t := x.(type) of
    	// type switch headers), the corresponding objects are nil.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api.go

    	Instances map[*syntax.Name]Instance
    
    	// Defs maps identifiers to the objects they define (including
    	// package names, dots "." of dot-imports, and blank "_" identifiers).
    	// For identifiers that do not denote objects (e.g., the package name
    	// in package clauses, or symbolic variables t in t := x.(type) of
    	// type switch headers), the corresponding objects are nil.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // possible suffixes.
    //
    // For example:
    //
    //   - “01+10” and “+01+10” both denote the set of changes
    //     with IDs ending with the bits 01 or 10.
    //
    //   - “01+10-1001” denotes the set of changes with IDs
    //     ending with the bits 01 or 10, but excluding those ending in 1001.
    //
    //   - “-01-1000” and “y-01-1000 both denote the set of all changes
    //     with IDs not ending in 01 nor 1000.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		return fmt.Sprintf("%s<%s>", base, arg1)
    	}
    	return fmt.Sprintf("%s<%s,%s>", base, arg1, arg2)
    }
    
    func (d *dwctxt) mkinternaltype(ctxt *Link, abbrev int, typename, keyname, valname string, f func(*dwarf.DWDie)) loader.Sym {
    	name := mkinternaltypename(typename, keyname, valname)
    	symname := dwarf.InfoPrefix + name
    	s := d.ldr.Lookup(symname, 0)
    	if s != 0 && d.ldr.SymType(s) == sym.SDWARFTYPE {
    		return s
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Current:  `{}`,
    			Modified: `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    
    			ExpectedTwoWay:         `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    			ExpectedTwoWayResult:   `{"complex_nullable":[{"inner_one":{"key_one":"foo"}}]}`,
    			ExpectedThreeWay:       `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            if (artifact == null) {
                return null;
            }
    
            ArtifactHandler handler = newHandler(artifact);
    
            /*
             * NOTE: From Artifact.hasClassifier(), an empty string and a null both denote "no classifier". However, some
             * plugins only check for null, so be sure to nullify an empty classifier.
             */
            org.apache.maven.artifact.Artifact result = new org.apache.maven.artifact.DefaultArtifact(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    		break
    	}
    
    	if keyName, ok := formValues["Key"]; !ok {
    		apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, errors.New("The name of the uploaded key is missing"))
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	} else if fileName == "" && len(keyName) >= 1 {
    		// if we can't get fileName. We use keyName[0] to fileName
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. cmd/metacache-server-pool.go

    	}
    
    	// For delimiter and prefix as '/' we do not list anything at all
    	// along // with the prefix. On a flat namespace with 'prefix'
    	// as '/' we don't have any entries, since all the keys are
    	// of form 'keyName/...'
    	if strings.HasPrefix(o.Prefix, SlashSeparator) {
    		return entries, io.EOF
    	}
    
    	// If delimiter is slashSeparator we must return directories of
    	// the non-recursive scan unless explicitly requested.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top