Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 387 for capsule (0.12 sec)

  1. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project1/build.gradle

            System.err.println('A task error message which is logged at WARN level')
        }
    }
    
    // START SNIPPET task-capture-stdout
    task logInfo {
        logging.captureStandardOutput LogLevel.INFO
        doFirst {
            println 'A task message which is logged at INFO level'
        }
    }
    // END SNIPPET task-capture-stdout
    
    task nestedBuildLog(type: GradleBuild) {
        startParameter.currentDir = rootProject.file('nestedBuild')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/c/tf_status.cc

    void TF_SetPayload(TF_Status* s, const char* key, const char* value) {
      TSL_SetPayload(s, key, value);
    }
    void TF_ForEachPayload(const TF_Status* s, TF_PayloadVisitor visitor,
                           void* capture) {
      TSL_ForEachPayload(s, visitor, capture);
    }
    void TF_SetStatusFromIOError(TF_Status* s, int error_code,
                                 const char* context) {
      TSL_SetStatusFromIOError(s, error_code, context);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 18:40:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/config/config.go

    	// StartTime is the start time the log capture time range.
    	// If set, Since must be unset.
    	StartTime time.Time `json:"startTime,omitempty"`
    	// EndTime is the end time the log capture time range.
    	// Default is now.
    	EndTime time.Time `json:"endTime,omitempty"`
    	// Since defines the start time the log capture time range.
    	// StartTime is set to EndTime - Since.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            loggingManager.getLevel() == null
        }
    
        public void "can change standard out capture log level"() {
            when:
            loggingManager.captureStandardOutput(LogLevel.ERROR)
    
            then:
            loggingManager.getStandardOutputCaptureLevel() == LogLevel.ERROR
        }
    
        public void "can change standard error capture log level"() {
            when:
            loggingManager.captureStandardError(LogLevel.WARN)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerConsoleInputEndUserIntegrationTest.groovy

                            }
                            useSpock()
                        }
                    }
                }
    
                ${mavenCentralRepository()}
            """
        }
    
        def "can capture user input if standard input was provided"() {
            when:
            file("src/test/groovy/Test.groovy") << functionalTest("""
                // defer sending the answer until prompted
                def stdin = new PipedInputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            }
    
            // then:
            val runnableBuildOperation = ArgumentCaptor.forClass(RunnableBuildOperation::class.java)
            verify(buildOperationRunner).run(runnableBuildOperation.capture())
    
            // and:
            assertThat(
                runnableBuildOperation.value.description().build().progressDisplayName,
                equalTo("Storing configuration cache state")
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. architecture/standards/README.md

    ## Architecture Standards
    
    **Experimental!**
    
    We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/).
    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/cmd/root.go

    			CNIMode:          cfg.CNIMode,
    			NetworkNamespace: cfg.NetworkNamespace,
    		}
    	}
    
    	iptConfigurator := capture.NewIptablesConfigurator(cfg, ext)
    
    	if !cfg.SkipRuleApply {
    		if err := iptConfigurator.Run(); err != nil {
    			return err
    		}
    		if err := capture.ConfigureRoutes(cfg); err != nil {
    			return fmt.Errorf("failed to configure routes: %v", err)
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project2/build.gradle

    buildscript {
        println('quietProject2ScriptClassPathOut')
        logging.captureStandardOutput LogLevel.INFO
        logger.info('infoProject2ScriptClassPathOut')
    }
    
    evaluationDependsOn(':project1')
    // stdout capture config injected
    println('infoProject2Out')
    
    gradle.taskGraph.whenReady {
        println 'quietProject2CallbackOut'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 328 bytes
    - Viewed (0)
  10. src/math/big/arith_s390x_test.go

    //go:build s390x && !math_big_pure_go
    
    package big
    
    import (
    	"testing"
    )
    
    // Tests whether the non vector routines are working, even when the tests are run on a
    // vector-capable machine
    
    func TestFunVVnovec(t *testing.T) {
    	if hasVX {
    		for _, a := range sumVV {
    			arg := a
    			testFunVV(t, "addVV_novec", addVV_novec, arg)
    
    			arg = argVV{a.z, a.y, a.x, a.c}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 770 bytes
    - Viewed (0)
Back to top