Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 645 for 20something (0.27 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

                    File outputFile
    
                    @Optional
                    @OutputFile
                    File secondaryOutputFile
    
                    @TaskAction
                    void doSomething() {
                        outputFile.text = inputFile.text
                        if (secondaryOutputFile != null) {
                            secondaryOutputFile.text = "secondary"
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

        assertEquals(
            "text/plain; something=\"cr@zy\"; something-else=\"crazy with spaces\";"
                + " and-another-thing=\"\"; normal-thing=foo",
            MediaType.create("text", "plain")
                .withParameter("something", "cr@zy")
                .withParameter("something-else", "crazy with spaces")
                .withParameter("and-another-thing", "")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    We also saw that HTTPS is normally provided by a component **external** to your application server, a **TLS Termination Proxy**.
    
    And there has to be something in charge of **renewing the HTTPS certificates**, it could be the same component or it could be something different.
    
    ### Example Tools for HTTPS
    
    Some of the tools you could use as a TLS Termination Proxy are:
    
    * Traefik
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Supplier.java

    /**
     * A class that can supply objects of a single type; a pre-Java-8 version of {@link
     * java.util.function.Supplier java.util.function.Supplier}. Semantically, this could be a factory,
     * generator, builder, closure, or something else entirely. No guarantees are implied by this
     * interface.
     *
     * <p>The {@link Suppliers} class provides common suppliers and related utilities.
     *
     * <p>See the Guava User Guide article on <a href=
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 12:15:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/MultiProcessSafeIndexedCacheTest.groovy

            0 * _._
        }
    
        def cacheOpened() {
            1 * fileAccess.writeFile(!null) >> { Runnable action -> action.run() }
            1 * factory.get() >> backingCache
    
            cache.getIfPresent("something")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/CachedKotlinTaskExecutionIntegrationTest.groovy

                    @get:InputFile @get:PathSensitive(PathSensitivity.NONE) var inputFile: File? = null
                    @get:OutputFile var outputFile: File? = null
                    @TaskAction fun doSomething() {
                        outputFile!!.apply {
                            parentFile.mkdirs()
                            writeText(inputFile!!.readText())
                            appendText("$suffix")
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedRelocationIntegrationTest.groovy

                    @InputFile
                    @PathSensitive(PathSensitivity.NONE)
                    File inputFile
    
                    @OutputFile File outputFile
    
                    @TaskAction void doSomething() {
                        outputFile.parentFile.mkdirs()
                        outputFile.text = inputFile.text + '$suffix'
                    }
                }
    
                task customTask(type: CustomTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildExternalPluginsValidationSmokeTest.groovy

     *
     * We validate the plugins during runtime, too. However, this test ensures that we learn about failures early,
     * i.e. the test is important since it shows if we need to change something in our build when we do the next
     * major version bump. Either by having the external plugins been fixed or by switching to different plugins.
     */
    @Requires([
        UnitTestPreconditions.Jdk9OrLater,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanBuildFailureHintIntegrationTest.groovy

        }
    
        static String failingBuildFile() {
            """
                task $DUMMY_TASK_NAME {
                    doLast {
                        throw new GradleException('something went wrong')
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:40:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    		}
    		if c.MaxRequestsInFlight+c.MaxMutatingRequestsInFlight <= 0 {
    			return fmt.Errorf("invalid configuration: MaxRequestsInFlight=%d and MaxMutatingRequestsInFlight=%d; they must add up to something positive", c.MaxRequestsInFlight, c.MaxMutatingRequestsInFlight)
    
    		}
    		c.FlowControl = utilflowcontrol.New(
    			informers,
    			clientset.FlowcontrolV1(),
    			c.MaxRequestsInFlight+c.MaxMutatingRequestsInFlight,
    		)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top