Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 378 for JSpecify (0.13 sec)

  1. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    // tag::specify-groovy-version[]
    dependencies {
    // end::specify-groovy-version[]
        implementation(localGroovy())
        testImplementation("junit:junit:4.13")
    // tag::specify-groovy-version[]
        "codenarc"("org.codehaus.groovy:groovy-all:3.0.3")
        "codenarc"("org.codenarc:CodeNarc:1.6.1")
    }
    // end::specify-groovy-version[]
    
    // tag::customize-checkstyle-memory[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. releasenotes/notes/49700.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: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. releasenotes/notes/51081.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 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestProjects.groovy

            def jvmArgs = gradleProperties.getProperty("org.gradle.jvmargs")?.split(' ')
            if (!jvmArgs.find { it.startsWith("-Xmx") }) {
                throw new IllegalArgumentException("Test project needs to specify -Xmx in gradle.properties. org.gradle.jvmargs = ${jvmArgs?.join(' ')}")
            }
            verifyGradlePropertiesSettingSpecified(gradleProperties, "org.gradle.parallel")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. configure.py

    
    def setup_python(environ_cp):
      """Setup python related env variables."""
      # Get PYTHON_BIN_PATH, default is the current running python.
      default_python_bin_path = sys.executable
      ask_python_bin_path = ('Please specify the location of python. [Default is '
                             '{}]: ').format(default_python_bin_path)
      while True:
        python_bin_path = get_from_env_or_user_or_default(environ_cp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. tools/build-base-images.sh

    if len(yml) == 1: yml = yml[0]
    json.dump(yml, sys.stdout, indent=4)
    '
    }
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    buildx-create
    
    HUBS="${HUBS:?specify a space separated list of hubs}"
    TAG="${TAG:?specify a tag}"
    defaultTargets="$(< "${ROOT}/tools/docker.yaml" toJson | toJson | jq '[.images[] | select(.base) | .name] | join(",")' -r)"
    DOCKER_TARGETS="${DOCKER_TARGETS:-${defaultTargets}}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top