Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for dain (0.44 sec)

  1. src/cmd/go/internal/test/test.go

    					base.Fatalf("cannot use -fuzz flag on package outside the main module")
    				}
    			} else {
    				if !mainMods.Contains("std") || !mainMods.InGorootSrc(module.Version{Path: "std"}) {
    					base.Fatalf("cannot use -fuzz flag on package outside the main module")
    				}
    			}
    		}
    	}
    	if testProfile() != "" && len(pkgs) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            def optional = mavenRepo.module('org', 'optional', '1.0').publish()
            def main = mavenRepo.module('org', 'main', '1.0').dependsOn(optional, optional: true).publish()
            mavenRepo.module('org.a', 'root', '1.0').dependsOn(main).dependsOn(optional).publish()
            def root11 = mavenRepo.module('org.a', 'root', '1.1').dependsOn(main).publish()
            def bom = mavenRepo.module("org", "bom", "1.0")
            bom.hasPackaging('pom')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

            activePomProfiles[0].getDependencyMgts().size() == 1
            assertResolvedPomDependencyManagement(key, 'version-two')
        }
    
        def "finds dependency default with properties defined in main body of POM"() {
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // main().  If you use gtest_main, you need to call this before main()
    // starts for it to take effect.  For example, you can define a global
    // variable like this:
    //
    //   testing::Environment* const foo_env =
    //       testing::AddGlobalTestEnvironment(new FooEnvironment);
    //
    // However, we strongly recommend you to write your own main() and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        Returns:
          True if and only if the graph def contains an op named `op_name`. If
          `attr_name` is given, check if the `attr_val` matches with the attribute
          value of the op.
        """
        # Check the main graph
        if self._contains_op_with_name_and_attribute(
            nodes=graphdef.node,
            op_name=op_name,
            attr_name=attr_name,
            attr_val=attr_val,
            node_name=node_name,
        ):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [source,groovy]
    ----
    tasks.register('createDirs') {
        doLast {
            mkdir 'src/main/resources'
            mkdir file('build/generated')
    
            // Create multiple dirs
            mkdir files(['src/main/resources', 'src/test/resources'])
    
            // Check dir existence
            def dir = file('src/main/resources')
            if (!dir.exists()) {
                mkdir dir
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		for _, arg := range p.LdFlags {
    			fmt.Fprintf(fflg, "_CGO_LDFLAGS=%s\n", arg)
    		}
    		fflg.Close()
    	}
    
    	// Write C main file for using gcc to resolve imports.
    	fmt.Fprintf(fm, "#include <stddef.h>\n") // For size_t below.
    	fmt.Fprintf(fm, "int main() { return 0; }\n")
    	if *importRuntimeCgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            failure.assertHasCause("Could not get unknown property 'libs' for object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler")
        }
    
        def "buildSrc and main project have different libraries extensions"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    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/cmd/link/internal/ld/lib.go

    	}
    	f, err := bio.Open(lib.File)
    	if err != nil {
    		Exitf("cannot open file %s: %v", lib.File, err)
    	}
    	defer f.Close()
    	defer func() {
    		if pkg == "main" && !lib.Main {
    			Exitf("%s: not package main", lib.File)
    		}
    	}()
    
    	for i := 0; i < len(ARMAG); i++ {
    		if c, err := f.ReadByte(); err == nil && c == ARMAG[i] {
    			continue
    		}
    
    		/* load it as a regular file */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```groovy
    sourceSets {
        main {
            groovy {
                // ...
            }
        }
    }
    ```
    
    However, the return type of the groovy block has changed to the extension type.
    This means that the following snippet no longer works in Gradle 7.1:
    
    ```groovy
     sourceSets {
         main {
             GroovySourceSet sourceSet = groovy {
                 // ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top