Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,206 for 20something (0.17 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/one.b

    Something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 17 bytes
    - Viewed (0)
  4. src/go/printer/testdata/gobuild5.input

    //go:build !(x || y) && z
    // +build something else
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:46 UTC 2021
    - 62 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src2/three/three.b

    Something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 17 bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/deployment/util/deployment_util_test.go

    			generatePodTemplateSpec("foo", "foo-node", map[string]string{}, map[string]string{apps.DefaultDeploymentUniqueLabelKey: "value-2", "something": "else"}),
    			true,
    		},
    		{
    			"Same spec, the former doesn't have pod-template-hash label",
    			generatePodTemplateSpec("foo", "foo-node", map[string]string{}, map[string]string{"something": "else"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  10. test/typeparam/issue51367.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type A[T any] struct{}
    
    func (_ A[T]) Method() {}
    
    func DoSomething[P any]() {
    	a := A[*byte]{}
    	a.Method()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 15:58:07 UTC 2022
    - 281 bytes
    - Viewed (0)
Back to top