Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for enter_1 (0.23 sec)

  1. src/internal/trace/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine enters a syscall, grabs a P, and starts running.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. .github/workflows/scorecard.yml

              #   - See https://github.com/ossf/scorecard-action#publishing-results.
              # For private repositories:
              #   - `publish_results` will always be set to `false`, regardless
              #     of the value entered here.
              publish_results: true
    
          # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
          # format to the repository Actions tab.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            }
            gradleHandle.stdinPipe.write(input.bytes)
            gradleHandle.stdinPipe.write(TextUtil.platformLineSeparator.bytes)
            poll {
                assert gradleHandle.standardOutput.contains("Please enter 'yes' or 'no': ")
            }
            writeToStdInAndClose(gradleHandle, "yes")
            gradleHandle.waitForFinish()
            gradleHandle.standardOutput.contains("result = true")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/jit/shape_inference.cc

          }
        }
    
        // Sometimes we have VariableShape nodes in while loop (after Enter nodes).
        // They won't be constant-folded because TensorFlow constant folding does
        // not handle Enter nodes (and thus does not handle any nodes after Enter
        // nodes). We try to replace such VariableShape nodes with Const nodes here.
        if (n->type_string() == "VariableShape") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      void SetLastWrites(ResourceId resource_id,
                         absl::flat_hash_set<Operation*> last_writes);
    
      // Enters a sequence of ops that have the same parallel id. This converts
      // stack state to per_resource_access_info_.
      void Enter();
    
      // Exits a sequence of ops that have the same parallel id. This converts
      // per_resource_access_info_ to stack state.
      void Exit();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Identities.kt

        fun putInstance(id: Int, instance: Any) {
            instanceIds[id] = instance
        }
    }
    
    
    class CircularReferences {
    
        private
        val refs = ReferenceOpenHashSet<Any>()
    
        fun enter(reference: Any) {
            require(refs.add(reference))
        }
    
        operator fun contains(reference: Any) =
            refs.contains(reference)
    
        fun leave(reference: Any) {
            require(refs.remove(reference))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/YesNoQuestionPromptEvent.java

            String trimmed = text.trim();
            if (YES_NO_CHOICES.contains(trimmed)) {
                return PromptResult.response(BooleanUtils.toBoolean(trimmed));
            }
            return PromptResult.newPrompt("Please enter 'yes' or 'no': ");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top