Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 711 for recurse (0.36 sec)

  1. src/os/stat.go

    // If there is an error, it will be of type [*PathError].
    //
    // On Windows, if the file is a reparse point that is a surrogate for another
    // named entity (such as a symbolic link or mounted folder), the returned
    // FileInfo describes the reparse point, and makes no attempt to resolve it.
    func Lstat(name string) (FileInfo, error) {
    	testlog.Stat(name)
    	return lstatNolog(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

                throw new UncheckedIOException(e);
            }
        }
    
        public static Collection<File> listFiles(File directory, String[] extensions, boolean recursive) {
            logDeprecation();
            return FileUtils.listFiles(directory, extensions, recursive);
        }
    
        public static List<String> toPaths(Collection<File> files) {
            logDeprecation();
            List<String> paths = new ArrayList<String>();
    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. src/internal/types/testdata/check/cycles2.go

    // Variations of this test case.
    
    type T1 /* ERROR "invalid recursive type" */ interface {
    	m() [x1.m()[0]]int
    }
    
    var x1 T1
    
    type T2 /* ERROR "invalid recursive type" */ interface {
    	m() [len(x2.m())]int
    }
    
    var x2 T2
    
    type T3 /* ERROR "invalid recursive type" */ interface {
    	m() [unsafe.Sizeof(x3.m)]int
    }
    
    var x3 T3
    
    type T4 /* ERROR "invalid recursive type" */ interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java

              parentBuilder) {
        List<TestSuite> derivedSuites = super.createDerivedSuites(parentBuilder);
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMAP)) {
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/index.md

    # Tutorial - Guia de Usuário
    
    Esse tutorial mostra como usar o **FastAPI** com a maior parte de seus recursos, passo a passo.
    
    Cada seção constrói, gradualmente, sobre as anteriores, mas sua estrutura são tópicos separados, para que você possa ir a qualquer um específico e resolver suas necessidades específicas de API.
    
    Ele também foi feito como referência futura.
    
    Então você poderá voltar e ver exatamente o que precisar.
    
    ## Rode o código
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/DerivedGoogleCollectionGenerators.java

          SampleElements<Entry<K, V>> samples = generator.samples();
          return new SampleElements<>(
              reverse(samples.e0()),
              reverse(samples.e1()),
              reverse(samples.e2()),
              reverse(samples.e3()),
              reverse(samples.e4()));
        }
    
        private Entry<V, K> reverse(Entry<K, V> entry) {
          return Helpers.mapEntry(entry.getValue(), entry.getKey());
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. docs/pt/docs/resources/index.md

    # Recursos
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 04 14:20:02 UTC 2024
    - 80 bytes
    - Viewed (0)
  8. cmd/metacache_gen.go

    				if err != nil {
    					err = msgp.WrapError(err, "status")
    					return
    				}
    				z.status = scanStatus(zb0002)
    			}
    		case "rec":
    			z.recursive, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "recursive")
    				return
    			}
    		case "v":
    			z.dataVersion, err = dc.ReadUint8()
    			if err != nil {
    				err = msgp.WrapError(err, "dataVersion")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Converter.java

    /**
     * A function from {@code A} to {@code B} with an associated <i>reverse</i> function from {@code B}
     * to {@code A}; used for converting back and forth between <i>different representations of the same
     * information</i>.
     *
     * <h3>Invertibility</h3>
     *
     * <p>The reverse operation <b>may</b> be a strict <i>inverse</i> (meaning that {@code
     * converter.reverse().convert(converter.convert(a)).equals(a)} is always true). However, it is very
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/typeinst0.go

    var _ List[List[List[int]]]
    
    // Parameterized types containing parameterized types
    
    type T3[P any] List[P]
    
    var _ T3[int] = T3[int](List[int]{1, 2, 3})
    
    // Self-recursive generic types are not permitted
    
    type self1[P any] self1 /* ERROR "invalid recursive type" */ [P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top