Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for doCreate (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentityFactory.java

            idFactory.idRecreated();
            return doCreate(name, type, project, uniqueId);
        }
    
        private static <T extends Task> TaskIdentity<T> doCreate(String name, Class<T> type, ProjectInternal project, long uniqueId) {
            return new TaskIdentity<>(
                type,
                name,
                project.projectPath(name),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

         * the existing public API, they may be used in non-idiomatic ways that will make this difficult.
         * <p>
         * This test will ensure that calls into {@code DefaultConfgurationContainer#doCreate(String)} in non-test code
         * begin with a call from a method in {@code RoleBasedConfigurationContainerInternal}.
         * (The banned alternate {@code create} methods are defined in {@code ConfigurationContainer} and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // Copyright 2023 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.
    
    // Regression test for an issue found in development.
    //
    // GoCreate events can happen on bare Ps in a variety of situations and
    // and earlier version of the parser assumed this wasn't possible. At
    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-fail-first-gen-first.test

    -- expect --
    FAILURE "expected a proc but didn't have one"
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=0 time=0 size=5
    GoCreate dt=0 new_g=1 new_stack=0 stack=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 256 bytes
    - Viewed (0)
  5. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    -- expect --
    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=17
    ProcStatus dt=1 p=0 pstatus=1
    GoCreate dt=1 new_g=5 new_stack=0 stack=0
    GoStart dt=1 g=5 g_seq=1
    GoStop dt=1 reason_string=1 stack=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=12
    Strings
    String id=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-annotations.test

    ProcStatus dt=1 p=47 pstatus=2
    ProcsChange dt=1 procs_value=48 stack=3
    STWEnd dt=184
    GoCreate dt=252 new_g=6 new_stack=4 stack=5
    GoCreate dt=78 new_g=7 new_stack=6 stack=7
    GoCreate dt=73 new_g=8 new_stack=8 stack=9
    UserTaskBegin dt=71 task=1 parent_task=0 name_string=22 stack=10
    UserRegionBegin dt=535 task=1 name_string=23 stack=11
    HeapAlloc dt=26 heapalloc_value=1884160
    GoCreate dt=8 new_g=9 new_stack=12 stack=13
    GoBlock dt=249 reason_string=10 stack=14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/runtime/tracestatus.go

    	//
    	// There are two of these so that we can reset the counter on each generation.
    	// This saves space in the resulting trace by keeping the counter small and allows
    	// GoStatus and GoCreate events to omit a sequence number (implicitly 0).
    	seq [2]uint64
    }
    
    // acquireStatus acquires the right to emit a Status event for the scheduling resource.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top