Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for from1 (0.18 sec)

  1. 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)
  2. clause/select_test.go

    		Result  string
    		Vars    []interface{}
    	}{
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}},
    			"SELECT * FROM `users`", nil,
    		},
    		{
    			[]clause.Interface{clause.Select{
    				Columns: []clause.Column{clause.PrimaryColumn},
    			}, clause.From{}},
    			"SELECT `users`.`id` FROM `users`", nil,
    		},
    		{
    			[]clause.Interface{clause.Select{
    				Columns: []clause.Column{clause.PrimaryColumn},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:06:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    tasks.register('anotherCopyTask', Copy) {
        // Copy everything under src/main/webapp
        from 'src/main/webapp'
        // Copy a single file
        from 'src/staging/index.html'
        // Copy the output of a task
        from copyTask
        // Copy the output of a task using Task outputs explicitly.
        from copyTaskWithPatterns.outputs
        // Copy the contents of a Zip file
        from zipTree('src/main/assets.zip')
        // Determine the destination directory later
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/maven-publish/javaProject/kotlin/build.gradle.kts

    // end::repo-url-from-variable[]
                url = uri(if (project.hasProperty("release")) releasesRepoUrl else snapshotsRepoUrl)
    // end::repo-url-from-project-property[]
    // tag::repo-url-from-variable[]
                url = uri(if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl)
    // tag::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.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/OperationSupport.h"  // from @llvm-project
    #include "mlir/IR/SymbolTable.h"  // from @llvm-project
    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-in.yaml

        name: default
      rules:
        # rule[0] `from`: nil, `to`: HTTP field.
        - to:
            - operation:
                methods: ["GET"]
        # rule[1] `from`: TCP field, `to`: HTTP field.
        - from:
            - source:
                ipBlocks: ["1.2.3.4"]
          to:
            - operation:
                methods: ["GET"]
        # rule[2] `from`: TCP field, `to`: TCP field.
        - from:
            - source:
                ipBlocks: ["1.2.3.4"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

         * thus hiding the location of exceptions thrown by groovy scripts applied from kotlin scripts.
         *
         * This test exercises the current behavior.
         */
        @Test
        fun `location of exception thrown by groovy script applied from kotlin script shadowed by the kotlin location`() {
    
            val kotlinScript = withBuildScript("""apply(from = "other.gradle")""")
            withFile(
                "other.gradle",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.cc

    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/DialectImplementation.h"  // from @llvm-project
    #include "mlir/IR/OpDefinition.h"  // from @llvm-project
    #include "mlir/IR/OpImplementation.h"  // from @llvm-project
    #include "mlir/IR/OperationSupport.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 01:32:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/IvyMutableModuleMetadataFactory.java

        private ModuleVersionIdentifier asVersionIdentifier(ModuleComponentIdentifier from) {
            return moduleIdentifierFactory.moduleWithVersion(from.getGroup(), from.getModule(), from.getVersion());
        }
    
        @Override
        public MutableIvyModuleResolveMetadata missing(ModuleComponentIdentifier from) {
            MutableIvyModuleResolveMetadata metadata = create(from, ImmutableList.of());
            metadata.setMissing(true);
            return metadata;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top