Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,628 for inf2 (0.2 sec)

  1. src/internal/types/testdata/check/issues1.go

    	return nil
    }
    
    type List3[TElem any] struct {
    	root Element3[TElem]
    	len  int
    }
    
    // Infinite generic type declarations must lead to an error.
    type inf1[T any] struct{ _ inf1 /* ERROR "invalid recursive type" */ [T] }
    type inf2[T any] struct{ inf2 /* ERROR "invalid recursive type" */ [T] }
    
    // The implementation of conversions T(x) between integers and floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:56:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/info.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cases
    
    func (c info) cccVal() info {
    	if c&exceptionBit != 0 {
    		return info(exceptions[c>>exceptionShift]) & cccMask
    	}
    	return c & cccMask
    }
    
    func (c info) cccType() info {
    	ccc := c.cccVal()
    	if ccc <= cccZero {
    		return cccZero
    	}
    	return ccc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/ajax/info.html

    <a href="info.html">INFO</a>...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 29 bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Info.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    interface Info {
        int getAttributes();
        long getCreateTime();
        long getLastWriteTime();
        long getSize();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 995 bytes
    - Viewed (0)
  5. src/cmd/go/internal/modinfo/info.go

    	GoModSum   string           `json:",omitempty"` // checksum for go.mod (as in go.sum)
    	Origin     *codehost.Origin `json:",omitempty"` // provenance of module
    	Reuse      bool             `json:",omitempty"` // reuse of old module info is safe
    }
    
    type ModuleError struct {
    	Err string // error text
    }
    
    type moduleErrorNoMethods ModuleError
    
    // UnmarshalJSON accepts both {"Err":"text"} and "text",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/caching/package-info.java

     * limitations under the License.
     */
    
    /**
     * Classes for build caches.
     *
     * @since 3.3
     */
    
    // We already have a similar package-info.java in :build-cache-spi
    // We must have a package-info.java for every package directory, but for each package
    // @NonNullApi must only be declared once, otherwise `:docs:javadocAll` fails.
    //@NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:09:36 UTC 2024
    - 946 bytes
    - Viewed (0)
  7. src/strconv/atoc_test.go

    		{"NaN-NaNi", 0, ErrSyntax},
    
    		// Infs
    		{"Inf", infp0, nil},
    		{"+inf", infp0, nil},
    		{"-inf", infm0, nil},
    		{"Infinity", infp0, nil},
    		{"+INFINITY", infp0, nil},
    		{"-infinity", infm0, nil},
    		{"+infi", inf0p, nil},
    		{"0-infinityi", inf0m, nil},
    		{"Inf+Infi", infpp, nil},
    		{"+Inf-Infi", infpm, nil},
    		{"-Infinity+Infi", infmp, nil},
    		{"inf-inf", 0, ErrSyntax},
    
    		// Zeros
    		{"0", 0, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

            int start = bufferIndex;
            FileInformation inf = createFileInformation();
            if ( inf != null ) {
                bufferIndex += inf.decode(buffer, bufferIndex, getDataCount());
                this.info = inf;
            }
            return bufferIndex - start;
        }
    
    
        private FileInformation createFileInformation () {
            FileInformation inf;
            switch ( this.informationLevel ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

            int start = bufferIndex;
            AllocInfo inf = createInfo();
            if ( inf != null ) {
                bufferIndex += inf.decode(buffer, bufferIndex, getDataCount());
                this.info = inf;
            }
            return bufferIndex - start;
        }
    
    
        /**
         * @return
         */
        private AllocInfo createInfo () {
            AllocInfo inf;
            switch ( this.informationLevel ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache_test.go

    func (d dataString) AuthenticatedData() []byte { return []byte(d) }
    
    func Test_simpleCache(t *testing.T) {
    	info1 := []byte{1}
    	info2 := []byte{2}
    	key1 := dataString("1")
    	key2 := dataString("2")
    	twi1 := &transformerWithInfo{info: info1}
    	twi2 := &transformerWithInfo{info: info2}
    
    	tests := []struct {
    		name string
    		test func(*testing.T, *simpleCache, *clocktesting.FakeClock)
    	}{
    		{
    			name: "get from empty",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top