Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,485 for corerest (0.24 sec)

  1. tests/migrate_test.go

    					t.Fatalf("column id primary key should be correct, name: %v, column: %#v", columnType.Name(),
    						columnType)
    				}
    			case "name":
    				dataType := DB.Dialector.DataTypeOf(stmt.Schema.LookUpField(columnType.Name()))
    				if !strings.Contains(strings.ToUpper(dataType), strings.ToUpper(columnType.DatabaseTypeName())) {
    					t.Fatalf("column name type should be correct, name: %v, length: %v, expects: %v, column: %#v",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  2. internal/config/errors.go

    		"Please set the correct default KMS key value or the correct root credentials for older MinIO versions.",
    		`Revert MINIO_KMS_KES_KEY_NAME or MINIO_ROOT_USER/MINIO_ROOT_PASSWORD (for older MinIO versions) to be able to decrypt the internal data again.`,
    	)
    
    	ErrInvalidCredentials = newErrFn(
    		"Invalid credentials",
    		"Please provide correct credentials",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/additional-responses.md

        The correct place is:
    
        * In the key `content`, that has as value another JSON object (`dict`) that contains:
            * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
                * A key `schema`, that has as the value the JSON Schema from the model, here's the correct place.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/jvm/tasks/JarTest.groovy

            jar.manifest != null
            jar.metaInf != null
        }
    
        def "correct jar manifest"() {
            when:
            jar.manifest = new DefaultManifest(null)
            jar.manifest {
                attributes(key: 'value')
            }
    
            then:
            jar.manifest.attributes.key == 'value'
        }
    
        def "correct jar manifest from null manifest"() {
            when:
            jar.manifest = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue22344.go

    		)
    		var z [iota]int                  // [2]int
    		_ = unsafe.Sizeof([2]int{} == z) // assert types are equal
    	})
    	three = iota // the sequence continues
    )
    
    var _ [three]int = [3]int{} // assert 'three' has correct value
    
    func main() {
    
    	const (
    		_ = iota
    		_ = len([iota]byte{})
    		_ = unsafe.Sizeof(iota)
    		_ = unsafe.Sizeof(func() { _ = iota })
    		_ = unsafe.Sizeof(func() { var _ = iota })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 12 06:46:57 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/BUILD

        deps = [
            ":cpp",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. releasenotes/notes/49476.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 49476
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 00:44:31 UTC 2024
    - 219 bytes
    - Viewed (0)
  8. build-logic/dependency-modules/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to minify and correct metadata for dependencies used by Gradle"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("com.google.code.gson:gson")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 276 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizerTest.groovy

    one warning found
    
    > Task :app:processResources NO-SOURCE
    > Task :app:classes
    > Task :app:jar
    > Task :app:startScripts
    > Task :app:distTar
    > Task :app:distZip
    > Task :app:assemble
    > Task :app:compileTestJava NO-SOURCE
    > Task :app:compileTestScala
    [Warn] : -target is deprecated: Use -release instead to compile against the correct platform API.
    one warning found
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaProjectIntegrationTest.groovy

            '1.7'   | 'JavaSE-1.7'
            '1.8'   | 'JavaSE-1.8'
            '1.9'   | 'JavaSE-9'
            '1.10'  | 'JavaSE-10'
        }
    
        @ToBeFixedForConfigurationCache
        def "generated JDT preferences have correct compiler version"(String version, String expectedVersion) {
            settingsFile << "rootProject.name = 'java'"
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top