Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for notinheap (0.39 sec)

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

    		// However, types2 does not know about build constraints.
    		"bug514.go",
    		"issue40954.go",
    		"issue42032.go",
    		"issue42076.go",
    		"issue46903.go",
    		"issue51733.go",
    		"notinheap2.go",
    		"notinheap3.go",
    	)
    }
    
    func TestStdKen(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test", "ken"))
    }
    
    // Package paths of excluded packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            }
    
            and:
            executeWithDependencies project.tasks[EarPlugin.EAR_TASK_NAME]
    
            then:
            inEar "bean.jar"
            inEar "lib/pojo.jar"
            notInEar "lib/bean.jar"
        }
    
        def "supports generating deployment descriptor"() {
            when:
            project.pluginManager.apply(EarPlugin)
            executeWithDependencies project.tasks[EarPlugin.EAR_TASK_NAME]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	switch {
    	case t.IsBoolean() || t.IsInteger() || t.IsFloat() || t.IsComplex():
    		s.store(t, left, right)
    	case t.IsPtrShaped():
    		if t.IsPtr() && t.Elem().NotInHeap() {
    			s.store(t, left, right) // see issue 42032
    		}
    		// otherwise, no scalar fields.
    	case t.IsString():
    		if skip&skipLen != 0 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            jvmMemoryHeapObj.max = mem.getHeapMax().getBytes();
            jvmMemoryHeapObj.percent = mem.getHeapUsedPercent();
            final JvmMemoryNonHeapObj jvmMemoryNonHeapObj = new JvmMemoryNonHeapObj();
            jvmMemoryObj.nonHeap = jvmMemoryNonHeapObj;
            jvmMemoryNonHeapObj.used = mem.getNonHeapUsed().getBytes();
            jvmMemoryNonHeapObj.committed = mem.getNonHeapCommitted().getBytes();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

        }
    
        void configureGarbageCollectionNonHeapEventsFor(long initial, long max, long leakRate, double gcRate) {
            configureGarbageCollectionEvents("nonHeap", initial, max, leakRate, gcRate)
        }
    
        void configureGarbageCollectionEvents(String type, long initial, long max, leakRate, gcRate) {
            def events = eventsFor(initial, max, leakRate, gcRate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top