Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,297 for JSpecify (0.13 sec)

  1. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # o targetProcedureNameList: (NotRequired - Default list:{})
        #  You can specify target name of generated parameter bean for procedure.
        #  This property is valid only when isGenerateProcedureParameterBean is valid.
        #   e.g. list:{prefix:SP_}
        #  And you can specify procedures through DB link.
        #  This is treated as additional setting
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/kubelet/apis/config/validation/validation_test.go

    			conf.NodeLeaseDurationSeconds = 0
    			return conf
    		},
    		errMsg: "invalid configuration: nodeLeaseDurationSeconds must be greater than 0",
    	}, {
    		name: "specify EnforceNodeAllocatable without enabling CgroupsPerQOS",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.CgroupsPerQOS = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

    /**
     * Defines different ways to report problems.
     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemReporter {
    
        /**
         * Configures and reports a new problem.
         * <p>
         * The spec must specify the problem label and the category. Any additional configuration is optional.
         *
         * @param spec the problem configuration
         * @since 8.6
         */
        void reporting(Action<ProblemSpec> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. releasenotes/notes/25818.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: Tue Aug 11 21:20:58 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/BuildLayoutConverterTest.groovy

        SetSystemProperties systemProperties = new SetSystemProperties()
    
        def "can specify project directory using command-line argument"() {
            when:
            def dir = new File("some-dir").absoluteFile
            def parameters = convert(["--project-dir", "some-dir"])
    
            then:
            parameters.projectDir == dir
        }
    
        def "can specify Gradle user home directory using command-line argument"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. releasenotes/notes/pilot-discovery-scoped-namespaces.yaml

    # issue is a list of GitHub issues resolved in this note.
    # If issue is not in the current repo, specify its full URL instead.
    issue:
      - https://github.com/istio/istio/issues/26679
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 19:34:37 UTC 2021
    - 904 bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerConfigurationIntegrationTest.groovy

            then:
            def t = thrown InvalidRunnerConfigurationException
            t.message == 'Please specify a project directory before executing the build'
    
            when:
            runner.buildAndFail()
    
            then:
            t = thrown InvalidRunnerConfigurationException
            t.message == 'Please specify a project directory before executing the build'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. test/codegen/README

    
    - Architecture specifiers
    
    There are three different ways to specify on which architecture a test
    should be run:
    
    * Specify only the architecture (eg: "amd64"). This indicates that the
      check should be run on all the supported architecture variants. For
      instance, arm checks will be run against all supported GOARM
      variations (5,6,7).
    * Specify both the architecture and a variant, separated by a slash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top