Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 181 for room (0.05 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            when:
            configurationCacheFails 'alsoBroken'
    
            then:
            def reportDir4 = reportDir()
            reportDir4 == reportDir2
        }
    
        def "report is written to root project's buildDir"() {
            file("build.gradle") << """
                buildDir = 'out'
                tasks.register('broken') {
                    doFirst { println(project.name) }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            then:
            assertTransformed("root.blue", "root.additional.blue", "a.additional.blue", "a.jar")
            outputContains("files = [root.additional.blue.green, root.blue.green, a.jar.green, a.additional.blue.green]")
            outputContains("artifacts = [root.additional.blue.green (root.additional.blue), root.blue.green (root.blue), a.jar.green (project :a), a.additional.blue.green (a.additional.blue)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        # Expect both quantized model to produce the same results.
        root = load.load(self._output_saved_model_path)
        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
        new_outputs_1 = root.signatures['serving_default'](
            x=ops.convert_to_tensor(input_data)
        )
    
        root = load.load(output_saved_model_path_2)
        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            then:
            failure.assertHasDescription("A problem occurred evaluating root project 'root'.")
            failure.assertHasCause("Must specify version for target of dependency substitution")
        }
    
        void "reasonable error message when attempting to create an invalid selector"() {
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                version = 1.0
    
                $common
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    		// were added and they could become direct at any time.
    		if !inRootPaths[root.Path] && mg.Selected(root.Path) == root.Version {
    			rootPaths = append(rootPaths, root.Path)
    			inRootPaths[root.Path] = true
    		}
    	}
    
    	// “The selected version of every module path in direct is included as a root.”
    	//
    	// This is only for convenience and clarity for end users: in an unpruned module,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. tests/test_generate_unique_id_function.py

        assert data == {
            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/": {
                    "post": {
                        "summary": "Post Root",
                        "operationId": "foo_post_root",
                        "requestBody": {
                            "content": {
                                "application/json": {
                                    "schema": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            Everything is resolvable but not x2
    
            Scenario:
             - We have batched up conflicts
             - root of one conflicted version is also conflicted
             - conflicted root is positioned on the conflicts queue after the conflicted child (the order of declaring dependencies matters)
             - winning root depends on a child that previously was evicted
             - finally, the winning child is an unresolved dependency
            */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            """
    
            when:
            lib.pom.expectGet()
            lib.artifact.expectGet()
    
            then:
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
            outputContains("Duplicate alias builder registered for my.great.lib")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  9. src/go/build/build.go

    				p.Goroot = true
    				p.Root = ctxt.GOROOT
    				goto Found
    			}
    		}
    		for _, root := range gopath {
    			dir := ctxt.joinPath(root, "src", path)
    			isDir := ctxt.isDir(dir)
    			binaryOnly = !isDir && mode&AllowBinary != 0 && pkga != "" && ctxt.isFile(ctxt.joinPath(root, pkga))
    			if isDir || binaryOnly {
    				p.Dir = dir
    				p.Root = root
    				goto Found
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			return "", false
    		}
    		var root string
    		var err error
    		if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
    			root = repl.Path
    			if !filepath.IsAbs(root) {
    				root = filepath.Join(replaceRelativeTo(), root)
    			}
    		} else if repl.Path != "" {
    			root, err = modfetch.DownloadDir(ctx, repl)
    		} else {
    			root, err = modfetch.DownloadDir(ctx, m)
    		}
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top