Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 258 for pouch (0.04 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

        final ToolingApi toolingApi = new ToolingApi(distribution, temporaryFolder)
    
        def setup() {
            toolingApi.requireIsolatedToolingApi()
            sync.start()
            settingsFile.touch()
        }
    
        def cleanup() {
            toolingApi.close()
        }
    
        def "tooling api restores standard streams at end of the build"() {
            given:
            def outInstance = System.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            }
        }
    
        /**
         * Ensures that the given file (or directory) is marked as modified. If the file
         * (or directory) does not exist, a new file is created.
         */
        public static void touch(File file) {
            logDeprecation();
            try {
                if (!file.createNewFile()) {
                    touchExistingInternal(file);
                }
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/DefaultVersionControlRepositoryFactory.java

                            GFileUtils.mkdirs(workingDir);
                            // Update timestamp so that working directory is not garbage collected
                            GFileUtils.touch(baseDir);
                            delegate.populate(workingDir, ref, spec);
                            return workingDir;
                        } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                                policy.getChecksumPolicy(),
                                false);
    
                        updateCheckManager.touch(artifact, repository, null);
                    } catch (ResourceDoesNotExistException e) {
                        updateCheckManager.touch(artifact, repository, null);
                        throw e;
                    } catch (TransferFailedException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. src/math/big/arith_arm64.s

    	SUB	$1, R0
    two:
    	TBZ	$1, R0, loop
    	LDP.P	16(R8), (R11, R12)
    	LDP.P	16(R9), (R15, R16)
    	ADCS	R15, R11
    	ADCS	R16, R12
    	STP.P	(R11, R12), 16(R10)
    	SUB	$2, R0
    loop:
    	CBZ	R0, done	// careful not to touch the carry flag
    	LDP.P	32(R8), (R11, R12)
    	LDP	-16(R8), (R13, R14)
    	LDP.P	32(R9), (R15, R16)
    	LDP	-16(R9), (R17, R19)
    	ADCS	R15, R11
    	ADCS	R16, R12
    	ADCS	R17, R13
    	ADCS	R19, R14
    	STP.P	(R11, R12), 32(R10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/WelcomeMessageAction.java

                }
            }
    
            return null;
        }
    
        private void writeMarkerFile(File markerFile) {
            GFileUtils.mkdirs(markerFile.getParentFile());
            GFileUtils.touch(markerFile);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/advanced-dependencies.md

        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="7"
        {!> ../../../docs_src/dependencies/tutorial011.py!}
        ```
    
    In this case, **FastAPI** won't ever touch or care about `__init__`, we will use it directly in our code.
    
    ## Create an instance
    
    We could create an instance of this class with:
    
    === "Python 3.9+"
    
        ```Python hl_lines="18"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/PluginUnderTest.groovy

                    implementation localGroovy()
                }
            """
    
            this
        }
    
        private File generateMetadataFile() {
            def file = metadataFile.touch()
            def properties = new Properties()
    
            if (implClasspath != null) {
                def content = implClasspath.collect { it.absolutePath.replaceAll('\\\\', '/') }.join(File.pathSeparator)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. docs/pt/docs/python-types.md

    O **FastAPI** é baseado nesses type hints, eles oferecem muitas vantagens e benefícios.
    
    Mas mesmo que você nunca use o **FastAPI**, você se beneficiaria de aprender um pouco sobre eles.
    
    !!! note "Nota"
         Se você é um especialista em Python e já sabe tudo sobre type hints, pule para o próximo capítulo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/WelcomeMessageActionTest.groovy

        def "does not print anything if marker file exists"() {
            given:
            def version = "42.0"
            def markerFile = markerFile(version)
            markerFile.getParentFile().mkdirs()
            markerFile.touch()
            def action = createWelcomeMessage(GradleVersion.version(version), null)
    
            when:
            action.execute(listener)
    
            then:
            log.toString().isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top