Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for procs_value (0.23 sec)

  1. src/internal/trace/testdata/tests/go122-annotations.test

    ProcStart dt=451 p=2 p_seq=1
    GoStart dt=188 g=8 g_seq=1
    EventBatch gen=1 m=167926 time=28113086275999 size=324
    ProcStatus dt=295 p=0 pstatus=1
    GoStatus dt=5 g=1 m=167926 gstatus=2
    ProcsChange dt=405 procs_value=48 stack=1
    STWBegin dt=65 kind_string=21 stack=2
    HeapGoal dt=2 heapgoal_value=4194304
    ProcStatus dt=4 p=1 pstatus=2
    ProcStatus dt=1 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    		HasData: true, // Easier to represent for raw readers.
    	},
    
    	// "Timed" Events.
    	EvProcsChange: event.Spec{
    		Name:         "ProcsChange",
    		Args:         []string{"dt", "procs_value", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    	},
    	EvProcStart: event.Spec{
    		Name:         "ProcStart",
    		Args:         []string{"dt", "p", "p_seq"},
    		IsTimedEvent: true,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    ProcsChange dt=184 procs_value=8 stack=1
    STWBegin dt=81 kind_string=21 stack=2
    HeapGoal dt=5 heapgoal_value=4194304
    ProcStatus dt=2 p=1 pstatus=2
    ProcStatus dt=1 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    ProcStatus dt=1 p=6 pstatus=2
    ProcStatus dt=1 p=7 pstatus=2
    ProcsChange dt=51 procs_value=8 stack=3
    STWEnd dt=74
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-annotations-stress.test

    GoStatus dt=4 g=1 m=1986492 gstatus=2
    ProcsChange dt=220 procs_value=8 stack=1
    STWBegin dt=127 kind_string=21 stack=2
    HeapGoal dt=3 heapgoal_value=4194304
    ProcStatus dt=2 p=0 pstatus=2
    ProcStatus dt=2 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    ProcStatus dt=1 p=6 pstatus=2
    ProcStatus dt=1 p=7 pstatus=2
    ProcsChange dt=353 procs_value=8 stack=3
    STWEnd dt=277
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

            for (Map.Entry<?, ?> entry : map.entrySet()) {
                builder.add(new MapEntrySnapshot<>(processValue(entry.getKey(), visitor), processValue(entry.getValue(), visitor)));
            }
            if (map instanceof Properties) {
                return visitor.properties(builder.build());
            } else {
                return visitor.map(builder.build());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoBlock dt=7067 reason_string=15 stack=5
    ProcStop dt=23
    EventBatch gen=3 m=169401 time=28114950894770 size=505
    ProcStatus dt=1 p=8 pstatus=1
    GoStatus dt=1 g=130 m=169401 gstatus=2
    ProcsChange dt=124 procs_value=48 stack=1
    GCActive dt=3 gc_seq=4
    HeapAlloc dt=600 heapalloc_value=190152128
    HeapAlloc dt=16 heapalloc_value=190160320
    HeapAlloc dt=11095 heapalloc_value=191741376
    HeapAlloc dt=179 heapalloc_value=191749568
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            this.valueSnapshotValueVisitor = new ValueSnapshotVisitor(classLoaderHasher);
        }
    
        @Override
        public ValueSnapshot snapshot(@Nullable Object value) throws ValueSnapshottingException {
            return processValue(value, valueSnapshotValueVisitor);
        }
    
        @Override
        public ValueSnapshot snapshot(Object value, ValueSnapshot candidate) throws ValueSnapshottingException {
            return candidate.snapshot(value, this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

        }
    
        @SuppressWarnings("unchecked")
        @Override
        public <T> Isolatable<T> isolate(@Nullable T value) {
            try {
                return (Isolatable<T>) processValue(value, isolatableValueVisitor);
            } catch (Throwable t) {
                throw new IsolationException(value, t);
            }
        }
    
        private static class IsolatableVisitor implements ValueVisitor<Isolatable<?>> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    	return newState, blockChanged
    }
    
    // processValue updates locs and state.registerContents to reflect v, a
    // value with the names in vSlots and homed in vReg.  "v" becomes
    // visible after execution of the instructions evaluating it. It
    // returns which VarIDs were modified by the Value's execution.
    func (state *debugState) processValue(v *Value, vSlots []SlotID, vReg *Register) bool {
    	locs := state.currentState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

            }
            return main;
        }
    
        @Input
        protected Iterable<String> getRelativeClasspath() {
            //a list instance is needed here, as org.gradle.internal.snapshot.ValueSnapshotter.processValue() does not support
            //serializing Iterators directly
            final FileCollection classpathNullable = getClasspath();
            if (classpathNullable == null) {
                return Collections.emptyList();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top