Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 902 for JSpecify (0.18 sec)

  1. releasenotes/notes/bug-report-speedup.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. releasenotes/notes/56781.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. releasenotes/notes/50933.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 13:58:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/groovy/library/build.gradle

            }
        }
    }
    
    dependencies {
        api 'org.slf4j:slf4j-api:1.7.10'
    }
    
    // tag::specify-relocation[]
    publishing {
        publications {
            // ... artifact publications
    
            // Specify relocation POM
            relocation(MavenPublication) {
                pom {
                    // Old artifact coordinates
                    groupId = "com.example"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/VersionedPluginUseIntegrationTest.groovy

            publishPlugin("1.0")
            publishPlugin("2.0")
        }
    
        def "can specify plugin version"() {
            when:
            buildScript "plugins { id '$PLUGIN_ID' version '1.0' }"
    
            then:
            verifyPluginApplied('1.0')
        }
    
        def "can specify plugin version using gradle properties"() {
            when:
            file("gradle.properties") << "myPluginVersion=2.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                cb.specify().columnAccessType();
                cb.specify().columnUserSessionId();
                cb.specify().columnHitCount();
                cb.specify().columnClientIp();
                cb.specify().columnSearchWord();
                cb.specify().columnRequestedAt();
                cb.specify().columnHitCount();
                cb.specify().columnVirtualHost();
                cb.specify().columnLanguages();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. releasenotes/notes/merge-svc.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a security fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r66/CommandLineOptionsCrossVersionSpec.groovy

            """
        }
    
        def "can specify options using properties file"() {
            when:
            file("gradle.properties") << "org.gradle.workers.max=12"
            def result = withBuild()
    
            then:
            result.standardOutput.contains("max workers: 12")
        }
    
        def "can specify options using command-line arguments"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionTestSupport.kt

                        "Module $name has resolve extension files, but does not specify WITH_RESOLVE_EXTENSION"
                    }
                    return this
                }
    
                val packageNames = directives[Directives.RESOLVE_EXTENSION_PACKAGE].toSet()
                check(packageNames.isNotEmpty()) {
                     "Module $name does not specify any RESOLVE_EXTENSION_PACKAGE"
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. chainable_api.go

    package gorm
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/utils"
    )
    
    // Model specify the model you would like to run db operations
    //
    //	// update all users's name to `hello`
    //	db.Model(&User{}).Update("name", "hello")
    //	// if user's primary key is non-blank, will use it as condition, then will only update that user's name to `hello`
    //	db.Model(&user).Update("name", "hello")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top