Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for sensible (0.32 sec)

  1. tensorflow/compiler/jit/test_util.h

          : library(OpRegistry::Global(), FunctionDefLibrary()) {
        session_options.env = Env::Default();
      }
    
      // Create GraphOptimizationPassOptions with a graph passed in constructor and
      // sensible options.
      GraphOptimizationPassOptions CreateGraphOptimizationPassOptions(
          std::unique_ptr<Graph>* graph) {
        GraphOptimizationPassOptions options;
        options.session_options = &session_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                executer.withTasks("b", "a").withArguments("-x", ":a").run().assertTasksExecuted(":b", ":sub:a")
            }
        }
    
        def "sensible error message for circular task dependency"() {
            buildFile << """
                task a(dependsOn: 'b')
                task b(dependsOn: 'a')
            """
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     */
    public interface KotlinPlatformComponent
    
    /**
     * An optional [KotlinPlatformComponent]. The Analysis API engine does not require an optional platform component to be implemented and
     * will use sensible fallbacks or disable/avoid certain behaviors instead.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPluginConvention.java

         *
         * @since 6.0
         */
        public abstract Property<Boolean> getGenerateDeploymentDescriptor();
    
        /**
         * A custom deployment descriptor configuration.
         * Default is an "application.xml" with sensible defaults.
         */
        public abstract DeploymentDescriptor getDeploymentDescriptor();
    
        public abstract void setDeploymentDescriptor(DeploymentDescriptor deploymentDescriptor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/publish/ArchivePublishArtifactTest.groovy

        @Rule
        public TestNameTestDirectoryProvider temporaryFolder = TestNameTestDirectoryProvider.newInstance(getClass())
    
        def testUtil = TestUtil.create(temporaryFolder)
    
        def "provides sensible default values for quite empty archive tasks"() {
            def quiteEmptyJar = testUtil.task(DummyJar)
            quiteEmptyJar.destinationDirectory.set(temporaryFolder.testDirectory)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_doc.txt

    go doc x/y
    ! stdout 'Package y is.*GOPATH'
    stdout 'Package y is.*alphabet'
    go doc rsc.io/quote
    ! stdout 'Package quote is located in a GOPATH workspace.'
    stdout 'Package quote collects pithy sayings.'
    
    # Check that a sensible error message is printed when a package is not found.
    env GOPROXY=off
    ! go doc example.com/hello
    stderr '^doc: cannot find module providing package example.com/hello: module lookup disabled by GOPROXY=off$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/component/BaseComponentSpecTest.groovy

            return BaseComponentFixtures.create(publicType, implType, componentId)
        }
    
        def "library has name, path and sensible display name"() {
            when:
            def component = create(SampleComponent, MySampleComponent)
    
            then:
            component instanceof SampleComponent
            component.name == componentId.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/JavaConfigurabilityCrossVersionSpec.groovy

                    .get()
            }
    
            then:
            env.java.javaHome
            env.java.jvmArguments.contains "-Xms13m"
            env.java.jvmArguments.contains "-Xmx333m"
        }
    
        def "uses sensible java defaults if nulls configured"() {
            when:
            BuildEnvironment env = withConnection {
                def model = it.model(BuildEnvironment.class)
                model
                    .setJvmArguments(null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

                        builder.defaultImplementation(DefaultSampleBinary)
                    }
                }
    
                apply plugin:MySamplePlugin
            """
        }
    
        def "produces sensible error when there are component binaries and all are not buildable" () {
            withLibBinaries("notBuildableBinary1", "notBuildableBinary2")
            withStandaloneBinaries("ignoreMe")
    
            when:
            fails "assemble"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. pkg/registry/core/service/portallocator/operation.go

    func (op *PortAllocationOperation) AllocateNext() (int, error) {
    	if op.dryRun {
    		// Find the max element of the allocated ports array.
    		// If no ports are already being allocated by this operation,
    		// then choose a sensible guess for a dummy port number
    		var lastPort int
    		for _, allocatedPort := range op.allocated {
    			if allocatedPort > lastPort {
    				lastPort = allocatedPort
    			}
    		}
    		if len(op.allocated) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top