Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 258 for capture1 (0.4 sec)

  1. pkg/test/echo/docker/Dockerfile.app_sidecar_base_centos

        conntrack \
        net-tools \
        ca-certificates \
        && update-ca-trust \
        && yum clean all \
        && rm -rf /var/cache/yum
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 568 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      // Test that the quantized op is captured in `results`.
      const QuantizationResult& quantized_result = results.results(0);
      EXPECT_THAT(quantized_result.quantizable_unit().name(),
                  StrEq("composite_dot_general_fn_2"));
      EXPECT_TRUE(quantized_result.method().has_static_range_ptq());
    
      // Test that the non-quantized op is captured in `results`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

    
    /**
     * Returns every property backing field for which a corresponding convention mapping flag field also exists.
     *
     * The convention mapping flag field is a Boolean field injected by [AsmBackedClassGenerator] in order to capture
     * whether a convention mapped property has been explicitly set or not.
     */
    private
    fun conventionAwareFieldsOf(beanType: Class<*>): Sequence<Pair<Field, Field>> =
        ClassInspector.inspect(beanType).let { details ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    ====
    include::sample[dir="snippets/tutorial/logging/kotlin",files="build.gradle.kts[tags=capture-stdout]"]
    include::sample[dir="snippets/tutorial/logging/groovy",files="build.gradle[tags=capture-stdout]"]
    ====
    
    To change the log level for standard out or error during task execution, use a link:{javadocPath}/org/gradle/api/logging/LoggingManager.html[LoggingManager].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // it would handle that error immediately and a totally valid generation
    // would be skipped for parsing and rejected because of an error in a
    // batch in the following generation.
    //
    // This test captures this behavior by making both the first generation
    // and second generation bad. It requires that the issue in the first
    // generation, which is caught when actually ordering events, be reported
    // instead of the second one.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pkg/log/options.go

    	// is to retain at most 1000 logs.
    	RotationMaxBackups int
    
    	// JSONEncoding controls whether the log is formatted as JSON.
    	JSONEncoding bool
    
    	// logGRPC indicates that Grpc logs should be captured.
    	// This is enabled by a --log_output_level=grpc:<level> typically
    	logGRPC bool
    
    	outputLevels        string
    	defaultOutputLevels string
    	logCallers          string
    	stackTraceLevels    string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultBuildScanUserInputHandlerTest.groovy

        def userQuestions = Mock(UserQuestions)
        @Subject def buildScanUserInputHandler = new DefaultBuildScanUserInputHandler(userInputHandler)
    
        def "can ask yes/no question and capture user input '#input'"() {
            given:
            def question = 'Accept license?'
    
            when:
            def answer = buildScanUserInputHandler.askYesNoQuestion(question)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLifecyclePluginIntegrationTest.groovy

                layout.buildDirectory.set(
                    layout.projectDirectory.dir(
                        service.map {
                            // intentionally capture the `project` object to force a cc failure
                            // in case this gets serialized
                            it.buildDirFor(project)
                        }
                    )
                )
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers.go

    			pod.Name, wasAnnotated, isAnnotated, shouldBeEnabled, changeNeeded, isTerminated, oldPod.ObjectMeta, newPod.ObjectMeta)
    
    		// If it was a job pod that (a) we captured and (b) just terminated (successfully or otherwise)
    		// remove it (the pod process is gone, but kube will keep the Pods around in
    		// a terminated || failed state - we should still do cleanup)
    		if isAnnotated && isTerminated {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationBuildOperationIntegrationTest.groovy

        BuildOperationsFixture operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        @UnsupportedWithConfigurationCache(because = "captures worker threads in shared state")
        def "task operations are closed even when interrupting the execution workers"() {
            server.start()
            executer.withStackTraceChecksDisabled()
            def parallelTaskCount = 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:46:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top