Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,128 for Single (0.59 sec)

  1. testing/internal-testing/src/test/groovy/org/gradle/test/precondition/PredicateFileTest.groovy

    class PredicateFileTest extends Specification {
    
        Set<Set<String>> values = [
            // Value NOT shared between single and multi cases
            ["value1"] as Set,
            // Value shared between single and multi cases
            ["value2"] as Set,
            ["value2", "value3"] as Set,
        ] as Set
    
        def "accept single values"() {
            when:
            checkValidCombinations([value])
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

    import java.lang.reflect.Modifier;
    import java.lang.reflect.Type;
    
    final class InjectUtil {
    
        /**
         * Selects the single injectable constructor for the given type.
         * The type must either have only one public or package-private default constructor,
         * or it should have a single non-private constructor annotated with {@literal @}{@link Inject}.
         *
         * @param type the type to find the injectable constructor of.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportsContainer.java

         */
        @Internal
        DirectoryReport getHtml();
    
        /**
         * The JaCoCo (single file) XML report
         *
         * @return The JaCoCo (single file) XML report
         */
        @Internal
        SingleFileReport getXml();
    
        /**
         * The JaCoCo (single file) CSV report
         *
         * @return The JaCoCo (single file) CSV report
         */
        @Internal
        SingleFileReport getCsv();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractVersionRangeResolveIntegrationTest.groovy

                singleProjectConfs << "single${i}"
                singleProjectDeps << "single${i} " + version.render()
            }
    
            buildFile.text = baseBuild + """
                allprojects {
                    configurations { conf }
                }
    
                configurations {
                    ${singleProjectConfs.join('\n')}
                    single {
                        extendsFrom(${singleProjectConfs.join(',')})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_ambiguous_path.txt

    # See golang.org/issue/34653.
    
    # A single pattern for a package ending in '.go'.
    go list ./foo.go
    stdout '^test/foo.go$'
    
    # Multiple patterns for packages including one ending in '.go'.
    go list ./bar ./foo.go
    stdout '^test/bar$'
    stdout '^test/foo.go$'
    
    # A single pattern for a Go file.
    go list ./a.go
    stdout '^command-line-arguments$'
    
    # A single typo-ed pattern for a Go file. This should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. samples/addons/loki.yaml

          port: 9095
          targetPort: grpc
          protocol: TCP
      selector:
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
        app.kubernetes.io/component: single-binary
    ---
    # Source: loki/templates/single-binary/statefulset.yaml
    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: loki
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

            val ktFileInCommon = session.modulesWithFiles.getValue(commonModule).single() as KtFile
            val callInCommon = ktFileInCommon.findDescendantOfType<KtCallExpression>()!!
            callInCommon.assertIsCallOf(CallableId(FqName("some.example"), FqName("Person"), Name.identifier("greet")))
    
            val ktFileInJvm = session.modulesWithFiles.getValue(sourceModule).single() as KtFile
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    //===----------------------------------------------------------------------===//
    
    YieldOp IslandOp::GetYield() { return llvm::cast<YieldOp>(GetBody().back()); }
    
    // Checks if a tf_executor.island wraps a single operation and the single
    // operation results are perfectly forwarded to the islands yield.
    bool IslandOp::WrapsSingleOp() {
      auto body = GetBody().without_terminator();
      if (!hasSingleElement(body)) return false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. utils/tests/models.go

    // User has one `Account` (has one), many `Pets` (has many) and `Toys` (has many - polymorphic)
    // He works in a Company (belongs to), he has a Manager (belongs to - single-table), and also managed a Team (has many - single-table)
    // He speaks many languages (many to many) and has many friends (many to many - single-table)
    // His pet also has one Toy (has one - polymorphic)
    // NamedPet is a reference to a named `Pet` (has one)
    type User struct {
    	gorm.Model
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/go/types/gotype.go

    type-checks a single Go package. Errors are reported if the analysis
    fails; otherwise gotype is quiet (unless -v is set).
    
    Without a list of paths, gotype reads from standard input, which
    must provide a single Go source file defining a complete package.
    
    With a single directory argument, gotype checks the Go files in
    that directory, comprising a single package. Use -t to include the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top