Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for pouch (0.08 sec)

  1. 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)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

        @Issue("GRADLE-1412")
        @ToBeFixedForConfigurationCache
        void "utility project's library and variable classpath entries contain necessary dependency attribute"() {
            //given
            file('libs/myFoo.jar').touch()
            createDirs("someLib")
            file('settings.gradle') << "include 'someLib'"
    
            file("build.gradle") <<
            """apply plugin: 'java'
               apply plugin: 'eclipse-wtp'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceTest.groovy

            def oldCacheDir = createVersionSpecificCacheDir(oldVersion, NOT_USED_WITHIN_30_DAYS)
            def oldDist = createDistributionChecksumDir(oldVersion).parentFile
    
            when:
            getGcFile(currentCacheDir).touch()
            cleanupService.cleanup()
    
            then:
            oldCacheDir.assertExists()
            oldDist.assertExists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux_test.go

    	if err := os.Chdir(d); err != nil {
    		t.Fatalf("chtmpdir: %v", err)
    	}
    	return func() {
    		if err := os.Chdir(oldwd); err != nil {
    			t.Fatalf("chtmpdir: %v", err)
    		}
    		os.RemoveAll(d)
    	}
    }
    
    func touch(t *testing.T, name string) {
    	f, err := os.Create(name)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := f.Close(); err != nil {
    		t.Fatal(err)
    	}
    }
    
    const (
    	_AT_SYMLINK_NOFOLLOW = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

                spec.testDirectory.file("buildSrc/gradle.properties") << "systemProp.$propertyKey=${propertyValue()}"
                spec.testDirectory.file("buildSrc/build.gradle").touch()
            }
    
            @Override
            String propertyValue() {
                return "buildSrc property"
            }
    
            @Override
            String toString() {
                return "BuildSrc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    		}
    
    	}
    	reset("../../bin")
    	reset("../../pkg")
    	reset("../../src")
    	reset(gorootInstallDir)
    }
    
    // touch changes path and returns a function that changes it back.
    // It also sets the time of the file, so that we can see if it is rewritten.
    func touch(t *testing.T, path string) (cleanup func()) {
    	t.Helper()
    	data, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

       * methods ensure that null is never present in the map, it's OK for the
       * comparator to look for it wherever it wants.
       *
       * Note that we do NOT touch the comparator returned by comparator(), which
       * should be identical to the one the user passed in. We touch only the
       * "secret" comparator used by the delegate implementation.
       */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            file("settings.gradle") << """rootProject.name = 'my-root-project'
    include('p1')
    include('p2')
    include('p2:p22')
    includeBuild('another')"""
            file('another/settings.gradle').touch()
    
            when:
            run ":projects"
    
            then:
            outputContains """
    Projects:
    
    ------------------------------------------------------------
    Root project 'my-root-project'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

            server.start()
            toolingApi.requireIsolatedUserHome()
            settingsFile.touch()
        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/1537')
        def "downloads distribution with valid user-agent information"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. docs/pt/docs/alternatives.md

    Ele utiliza a informação do Webargs e Marshmallow para gerar automaticamente _schemas_ OpenAPI, usando APISpec.
    
    É uma grande ferramenta, mas muito subestimada. Ela deveria ser um pouco mais popular do que muitos outros plug-ins Flask. É de ser esperado que sua documentação seja bem concisa e abstrata.
    
    Isso resolveu o problema de ter que escrever YAML (outra sintaxe) dentro das _docstrings_ Python.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top