Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 343 for notifyCh (0.22 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/tsan11.go

    	if (sigaction(SIGUSR1, &sa, NULL) != 0) {
    		perror("failed to register SIGUSR1 handler");
    		exit(EXIT_FAILURE);
    	}
    }
    */
    import "C"
    
    func main() {
    	ch := make(chan os.Signal, 1)
    	signal.Notify(ch, syscall.SIGUSR2)
    
    	C.register_handler(C.int(syscall.SIGUSR1))
    	syscall.Kill(syscall.Getpid(), syscall.SIGUSR1)
    
    	<-ch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/runtime/testdata/testwinsignal/main.go

    	go func() {
    		io.Copy(io.Discard, os.Stdin)
    		log.Fatal("stdin is closed; terminating")
    	}()
    
    	// Register to receive all signals.
    	c := make(chan os.Signal, 1)
    	signal.Notify(c)
    
    	// Get console window handle.
    	kernel32 := syscall.NewLazyDLL("kernel32.dll")
    	getConsoleWindow := kernel32.NewProc("GetConsoleWindow")
    	hwnd, _, err := getConsoleWindow.Call()
    	if hwnd == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/configuration/DefaultProjectsPreparer.java

            if (!buildModelParameters.isConfigureOnDemand() || !gradle.isRootBuild()) {
                projectConfigurer.configureHierarchy(gradle.getRootProject());
                new ProjectsEvaluatedNotifier(buildOperationRunner).notify(gradle);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockState.java

         * fails.
         */
        void registerLocked(ResourceLock resourceLock);
    
        /**
         * Registers a resource lock that has been unlocked during the transform so that the coordination service can
         * notify threads waiting on a lock.
         */
        void registerUnlocked(ResourceLock resourceLock);
    
        /**
         * Release any locks that have been acquired during the transform.
         */
        void releaseLocks();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/DefaultTaskExecutionPreparer.java

                buildTaskScheduler.scheduleRequestedTasks(gradle, selector, plan);
    
                if (buildModelParameters.isConfigureOnDemand() && gradle.isRootBuild()) {
                    new ProjectsEvaluatedNotifier(buildOperationRunner).notify(gradle);
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationContinuousBuildIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.operations.notify
    
    import org.gradle.integtests.fixtures.AbstractContinuousIntegrationTest
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.launcher.exec.RunBuildBuildOperationType
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 11 09:57:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationValve.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.operations.notify;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Controls an instance of build operation notifications.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ExclusiveCacheAccessingWorker.java

                            stopSeen = true;
                            break;
                        } else if (runnableClass == FlushOperationsCommand.class) {
                            // not holding the cache lock, flush is done so notify flush thread and continue
                            FlushOperationsCommand flushOperationsCommand = (FlushOperationsCommand) runnable;
                            flushOperationsCommand.completed();
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListenerRegistrar.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.operations.notify;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProjectConnection.java

         * For example, an IDE should notify Gradle when the user saves a changed file, or
         * after some refactoring finished.
         * This will guarantee that Gradle picks up changes when trigerring a build, even
         * if the file system is too slow to notify file watchers.
         *
         * The caller shouldn't notify Gradle about changes detected by using other file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top