Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for shortly (0.13 sec)

  1. src/runtime/mgcpacer.go

    	if c.heapLive.Load() <= c.triggered {
    		// Shouldn't happen, but let's be very safe about this in case the
    		// GC is somehow extremely short.
    		//
    		// In this case though, the only reasonable value for c.heapLive-c.triggered
    		// would be 0, which isn't really all that useful, i.e. the GC was so short
    		// that it didn't matter.
    		//
    		// Ignore this case and don't update anything.
    		return
    	}
    	idleUtilization := 0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    #line 1 "cgo-gcc-export-header-prolog"
    
    #ifndef GO_CGO_PROLOGUE_H
    #define GO_CGO_PROLOGUE_H
    
    typedef signed char GoInt8;
    typedef unsigned char GoUint8;
    typedef short GoInt16;
    typedef unsigned short GoUint16;
    typedef int GoInt32;
    typedef unsigned int GoUint32;
    typedef long long GoInt64;
    typedef unsigned long long GoUint64;
    typedef GoIntGOINTBITS GoInt;
    typedef GoUintGOINTBITS GoUint;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // Copyright 2009 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.
    
    // Malloc profiling.
    // Patterned after tcmalloc's algorithms; shorter code.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/profilerecord"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    				}
    				p.error(ident.Pos(), fmt.Sprintf("%s redeclared in this block%s", ident.Name, prevDecl))
    			}
    			ident.Obj = obj
    		}
    	}
    }
    
    func (p *parser) shortVarDecl(idents []*ast.Ident) {
    	// Go spec: A short variable declaration may redeclare variables
    	// provided they were originally declared in the same block with
    	// the same type, and at least one of the non-blank variables is new.
    	n := 0 // number of new variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. src/time/time_test.go

    	{0, `time.Now().UnixMilli()`, func() { u = Now().UnixMilli() }},
    	{0, `time.Now().UnixMicro()`, func() { u = Now().UnixMicro() }},
    }
    
    func TestCountMallocs(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Skip("skipping; GOMAXPROCS>1")
    	}
    	for _, mt := range mallocTest {
    		allocs := int(testing.AllocsPerRun(100, mt.fn))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

        private static final Map<Class<?>, Class<?>> BOXED_TYPES = ImmutableMap.<Class<?>, Class<?>>builder()
            .put(byte.class, Byte.class)
            .put(short.class, Short.class)
            .put(int.class, Integer.class)
            .put(boolean.class, Boolean.class)
            .put(float.class, Float.class)
            .put(char.class, Character.class)
            .put(double.class, Double.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(char[].class, TypeToken.of(char[][].class).getComponentType().getType());
        assertEquals(byte.class, TypeToken.of(byte[].class).getComponentType().getType());
        assertEquals(short.class, TypeToken.of(short[].class).getComponentType().getType());
        assertEquals(int.class, TypeToken.of(int[].class).getComponentType().getType());
        assertEquals(long.class, TypeToken.of(long[].class).getComponentType().getType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    // if they are visible in the symbol table.
    //
    // As the names of these symbols are derived from the string of
    // the type, they can run to many kilobytes long. So we shorten
    // them using a SHA-1 when the name appears in the final binary.
    // This also removes characters that upset external linkers.
    //
    // These are the symbols that begin with the prefix 'type.' and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    if (this.maxSpan...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais2.go

    	// short patterns like SLS will often be the same character sequences
    	// repeated throughout the text, reducing maxID relative to numLMS.
    	//
    	// For short inputs, the averages may not run in our favor, but then we
    	// can often fall back to using the length-512 tmp available in the
    	// top-most call. (Also a short allocation would not be a big deal.)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top