Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for enter_0 (0.12 sec)

  1. .github/workflows/scorecards-analysis.yml

              # https://github.com/ossf/scorecard-action#publishing-results.
              # For private repositories, `publish_results` will automatically be set to `false`,
              # regardless of the value entered here.
              publish_results: true
    
          # Upload the results as artifacts (optional).
          - name: "Upload artifact"
            uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3.1.1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 23:56:23 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/SupplementalMonitorTest.java

        verifyOccupiedMethodsInAnotherThread(monitor, false, false, 0);
        monitor.enter();
        try {
          verifyOccupiedMethodsInCurrentThread(monitor, true, true, 1);
          verifyOccupiedMethodsInAnotherThread(monitor, true, false, 0);
          monitor.enter();
          try {
            verifyOccupiedMethodsInCurrentThread(monitor, true, true, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/SupplementalMonitorTest.java

        verifyOccupiedMethodsInAnotherThread(monitor, false, false, 0);
        monitor.enter();
        try {
          verifyOccupiedMethodsInCurrentThread(monitor, true, true, 1);
          verifyOccupiedMethodsInAnotherThread(monitor, true, false, 0);
          monitor.enter();
          try {
            verifyOccupiedMethodsInCurrentThread(monitor, true, true, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildCancellationIntegrationTest.groovy

            }
    
            where:
            [inputBefore, flushBefore] << [['', ' ', 'a', 'some input', 'a' * 8192], [true, false]].combinations()
        }
    
        def "does not cancel continuous build when other than ctrl+d is entered"() {
            given:
            setupJavaProject()
    
            when:
            succeeds("build")
    
            then:
            noExceptionThrown()
    
            when:
            stdinPipe << "some input"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

    //       of entering and leaving some generic context (marked with a key?)
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface DynamicCallContextTracker {
        /**
         * Notifies the tracker that the control flow entered the context of a new dynamic call.
         * The tracker itself notifies all the registered listeners.
         *
         * @param entryPoint the key to identify the dynamic call
         */
        void enterDynamicCall(Object entryPoint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    Setting up a new Gradle job can be achieved with just a couple of clicks.
    From the left navigation bar select "New Item > Freestyle project".
    Enter a new name for the project. We'll pick "gradle-site-plugin" for the project.
    
    Select the radio button "Git" in the section "Source Code Management".
    Enter the URL of the GitHub repository: `https://github.com/gradle/gradle-site-plugin.git`.
    
    image::ci-systems/jenkins-scm.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/external/PlayExternalContinuousBuildIntegrationTest.groovy

        RunningPlayApp runningApp = new RunningPlayApp(testDirectory)
    
        def "build does not block when running play app with continuous build" () {
            when: "the build runs until it enters continuous build"
            succeeds("runPlay")
    
            then:
            appIsRunningAndDeployed()
        }
    
        def "can run play app multiple times with continuous build" () {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLeafSnapshot.java

            return visitor.visitEntry(this);
        }
    
        @Override
        default SnapshotVisitResult accept(RelativePathTracker pathTracker, RelativePathTrackingFileSystemSnapshotHierarchyVisitor visitor) {
            pathTracker.enter(getName());
            try {
                return visitor.visitEntry(this, pathTracker);
            } finally {
                pathTracker.leave();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/YesNoQuestionPromptEventTest.groovy

            def event = new YesNoQuestionPromptEvent(123, "question?")
    
            expect:
            def result = event.convert(input)
            result.response == null
            result.newPrompt == "Please enter 'yes' or 'no': "
    
            where:
            input   | _
            ''      | _
            'bla'   | _
            'y'     | _
            'Y'     | _
            'ye'    | _
            'YES'   | _
            'n'     | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_disablevendor.txt

    # outside of workspace mode.
    env GOWORK=off
    go list -f '{{.Dir}}' example.com/dep
    stdout $GOPATH[\\/]src[\\/]workspace[\\/]vendor[\\/]example.com[\\/]dep
    
    # Test case: endure the module does not enter mod=vendor outside
    # worspace mode.
    env GOWORK=''
    go list -f '{{.Dir}}' example.com/dep
    stdout $GOPATH[\\/]src[\\/]dep
    
    -- workspace/go.work --
    use .
    replace example.com/dep => ../dep
    -- workspace/main.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:22:29 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top