Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,934 for returns_ (0.1 sec)

  1. src/hash/fnv/fnv.go

    		s[1] = s1
    		s[0] = s0
    	}
    	return len(data), nil
    }
    
    func (s *sum32) Size() int   { return 4 }
    func (s *sum32a) Size() int  { return 4 }
    func (s *sum64) Size() int   { return 8 }
    func (s *sum64a) Size() int  { return 8 }
    func (s *sum128) Size() int  { return 16 }
    func (s *sum128a) Size() int { return 16 }
    
    func (s *sum32) BlockSize() int   { return 1 }
    func (s *sum32a) BlockSize() int  { return 1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// See comments for ExportObjectFact.
    	ExportPackageFact func(fact Fact)
    
    	// AllPackageFacts returns a new slice containing all package
    	// facts of the analysis's FactTypes in unspecified order.
    	AllPackageFacts func() []PackageFact
    
    	// AllObjectFacts returns a new slice containing all object
    	// facts of the analysis's FactTypes in unspecified order.
    	AllObjectFacts func() []ObjectFact
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/internal/dag/parse.go

    		tok = p.nextToken()
    		if tok != "," {
    			return list, tok
    		}
    	}
    }
    
    // nextToken returns the next token in the deps rules,
    // one of ";" "," "<" "!<" or a name.
    func (p *rulesParser) nextToken() string {
    	for {
    		if p.text == "" {
    			return ""
    		}
    		switch p.text[0] {
    		case ';', ',', '<':
    			t := p.text[:1]
    			p.text = p.text[1:]
    			return t
    
    		case '!':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * the property (when queried).
         *
         * <p>
         * This method can be used to specify that the property does not have a default value, by passing it
         * {@code null}.
         * </p>
         *
         * @param value The convention value, or {@code null} if the property should have no default value.
         * @return this
         * @since 5.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/sync/pool.go

    }
    
    // Get selects an arbitrary item from the [Pool], removes it from the
    // Pool, and returns it to the caller.
    // Get may choose to ignore the pool and treat it as empty.
    // Callers should not assume any relation between values passed to [Pool.Put] and
    // the values returned by Get.
    //
    // If Get would otherwise return nil and p.New is non-nil, Get returns
    // the result of calling p.New.
    func (p *Pool) Get() any {
    	if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    		if tokenEqual(trimOWS(v[:comma]), token) {
    			return true
    		}
    		v = v[comma+1:]
    	}
    	return tokenEqual(trimOWS(v), token)
    }
    
    // lowerASCII returns the ASCII lowercase version of b.
    func lowerASCII(b byte) byte {
    	if 'A' <= b && b <= 'Z' {
    		return b + ('a' - 'A')
    	}
    	return b
    }
    
    // tokenEqual reports whether t1 and t2 are equal, ASCII case-insensitively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

         *
         * @return The project directory. Never returns null.
         * @since 8.8
         */
        Directory getProjectDirectory();
    
        /**
         * <p>Returns the root project for the hierarchy that this project belongs to.  In the case of a single-project
         * build, this method returns this project.</p>
         *
         * @return The root project. Never returns null.
         * @since 8.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    // otherwise it returns a generic implementation.
    func new256() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_256)
    	}
    	return new256Generic()
    }
    
    // new384 returns an assembly implementation of SHA3-384 if available,
    // otherwise it returns a generic implementation.
    func new384() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_384)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/util.go

    func ExprString(x syntax.Node) string { return syntax.String(x) }
    
    // startPos returns the start position of node n.
    func startPos(n syntax.Node) syntax.Pos { return syntax.StartPos(n) }
    
    // endPos returns the position of the first character immediately after node n.
    func endPos(n syntax.Node) syntax.Pos { return syntax.EndPos(n) }
    
    // makeFromLiteral returns the constant value for the given literal string and kind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * Returns the unique name of this path type, including the module to patch if any.
         * For example, if this type is {@link JavaPathType#MODULES}, then this method returns {@code "MODULES"}.
         * But if this type was created by {@code JavaPathType.patchModule("foo.bar")}, then this method returns
         * {@code "PATCH_MODULE:foo.bar"}.
         *
         * @return the programmatic name together with the module name on which it applies
         * @see #toString()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top