Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for from1 (0.13 sec)

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

            def model = runBuildAction(new FetchCustomModelForEachProjectInTree())
    
            then:
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/GradleDistributionSpecs.kt

            val agentsRuntimeClasspath by configurations.getting
    
            from("${repoRoot()}/LICENSE")
            from("src/toplevel")
    
            into("bin") {
                from(gradleScriptPath)
                filePermissions { unix("0755") }
            }
    
            into("lib") {
                from(runtimeApiInfoJar)
                from(gradleApiKotlinExtensionsJar)
                from(coreRuntimeClasspath)
                into("plugins") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:35:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/maven-publish/javaProject/groovy/build.gradle

    // end::repo-url-from-variable[]
                url = project.hasProperty('release') ? releasesRepoUrl : snapshotsRepoUrl
    // end::repo-url-from-project-property[]
    // tag::repo-url-from-variable[]
                url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
    // tag::repo-url-from-project-property[]
            }
        }
    }
    // end::repo-url-from-project-property[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/run.go

    	includeNS := t.isMultipleNamespaces()
    
    	for _, from := range t.sources.Services() {
    		from := from
    		subtestName := from.Config().Service
    		if includeNS {
    			subtestName += "." + from.Config().Namespace.Prefix()
    		}
    		ctx.NewSubTest(subtestName).Run(func(ctx framework.TestContext) {
    			testFn(ctx, from)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/concurrency_test.py

    from tensorflow.python.framework import tensor_spec
    from tensorflow.python.framework import test_util
    from tensorflow.python.ops import math_ops
    from tensorflow.python.platform import test
    from tensorflow.python.saved_model import save as saved_model_save
    from tensorflow.python.saved_model import tag_constants
    from tensorflow.python.trackable import autotrackable
    
    
    class MultiThreadedTest(test.TestCase):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.h

    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Dialect.h"  // from @llvm-project
    #include "mlir/IR/Matchers.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. clause/locking_test.go

    		Vars    []interface{}
    	}{
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Locking{Strength: clause.LockingStrengthUpdate}},
    			"SELECT * FROM `users` FOR UPDATE", nil,
    		},
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Locking{Strength: clause.LockingStrengthShare, Table: clause.Table{Name: clause.CurrentTable}}},
    			"SELECT * FROM `users` FOR SHARE OF `users`", nil,
    		},
    		{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:32:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    }
    
    type authzTest struct {
    	from   echo.Instance
    	opts   echo.CallOptions
    	allow  allowValue
    	prefix string
    }
    
    func newAuthzTest() *authzTest {
    	return &authzTest{}
    }
    
    func (b *authzTest) Prefix(prefix string) *authzTest {
    	b.prefix = prefix
    	return b
    }
    
    func (b *authzTest) From(from echo.Instance) *authzTest {
    	b.from = from
    	return b
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.h

    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Dialect.h"  // from @llvm-project
    #include "mlir/IR/Matchers.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 29 08:20:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top