Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 434 for 20something (0.19 sec)

  1. cmd/kubeadm/app/util/arguments_test.go

    				{Name: "allow-privileged", Value: "true"},
    				{Name: "something-that-allows-empty-string", Value: ""},
    			},
    			overrides: []kubeadmapi.Arg{
    				{Name: "admission-control", Value: "NamespaceLifecycle,LimitRanger"},
    			},
    			expected: []string{
    				"--admission-control=NamespaceLifecycle,LimitRanger",
    				"--allow-privileged=true",
    				"--something-that-allows-empty-string=",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsEnumAndBooleanCmdOptionValues/build.gradle

    import org.gradle.api.tasks.options.Option
    
    allprojects{
        task hello(type: CustomTask)
    }
    
    class CustomTask extends DefaultTask {
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "enumValue", description = "Configures an enum value in CustomTask.")
        public void setEnumValue(TestEnum value) {
        }
    
        @Option(option = "booleanValue", description = "Configures a boolean flag in CustomTask.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 10:43:03 UTC 2023
    - 517 bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasSuffixPatternStepTest.groovy

            step.matches(".java")
            !step.matches("thing.JAVA")
            !step.matches("thing.Java")
            !step.matches("thing.jav")
            !step.matches("thing.c")
            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new HasSuffixPatternStep(".java", false)
    
            expect:
            step.matches("thing.java")
            step.matches(".java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/archivesChangedBaseName/kotlin/somedir/file.txt

    something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixAndSuffixPatternStepTest.groovy

            !step.matches("pre-s")
            !step.matches("suf")
            !step.matches("re-suf")
            !step.matches("e-suf")
            !step.matches("Pre-Suf")
            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new HasPrefixAndSuffixPatternStep("pre", "suf", CASE_INSENSITIVE)
    
            expect:
            step.matches("pre-suf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorkerTest.groovy

            def executable = Mock(File)
            def commandLineTool = new DefaultCommandLineToolInvocationWorker("Tool", executable, execActionFactory)
            def invocation = new DefaultCommandLineToolInvocation("doing something", null, [], context, Mock(BuildOperationLogger))
    
            when:
            commandLineTool.execute(invocation, null)
    
            then:
            1 * execAction.executable(executable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/archivesChangedBaseName/groovy/somedir/file.txt

    something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

         */
        ImmutableSet<Class<? extends Annotation>> getAllowedModifiers();
    
        /**
         * Does this handler do something useful with the properties that match it? Or can these properties be ignored?
         *
         * Should consider splitting up this type, perhaps into something that inspects the properties and produces the actual handlers and validation problems.
         */
        boolean isPropertyRelevant();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LexerTest.kt

            assertThat(
                lex("\n" +
                    "/* ... */\n" +
                    "// she-bangs! ///////_*&@ because why not! _-|\n" +
                    "\n" +
                    "#!/something/something\n" +
                    "\n" +
                    "\n" +
                    "/* first file annotation */\n" +
                    "@file:Suppress(\"UnstableApiUsage\")\n" +
                    "\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/encoder.md

    # JSON Compatible Encoder
    
    There are some cases where you might need to convert a data type (like a Pydantic model) to something compatible with JSON (like a `dict`, `list`, etc).
    
    For example, if you need to store it in a database.
    
    For that, **FastAPI** provides a `jsonable_encoder()` function.
    
    ## Using the `jsonable_encoder`
    
    Let's imagine that you have a database `fake_db` that only receives JSON compatible data.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top