Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 711 for recurse (0.73 sec)

  1. guava/src/com/google/common/io/InsecureRecursiveDeleteException.java

    import com.google.j2objc.annotations.J2ObjCIncompatible;
    import java.nio.file.FileSystemException;
    import java.nio.file.SecureDirectoryStream;
    import javax.annotation.CheckForNull;
    
    /**
     * Exception indicating that a recursive delete can't be performed because the file system does not
     * have the support necessary to guarantee that it is not vulnerable to race conditions that would
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. docs/es/docs/resources/index.md

    # Recursos
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:08:24 UTC 2024
    - 78 bytes
    - Viewed (0)
  3. test/fixedbugs/issue27557.go

    func (t *T) returns() *T { return t } // ERROR "leaking param: t to result ~r0 level=0"
    
    func (t *T) recursive() { // ERROR "leaking param: t$"
    	sink = t
    
    	var t2 T          // ERROR "moved to heap"
    	f := t2.recursive // ERROR "t2.recursive does not escape"
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 949 bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/os/61893.md

    On Windows, the mode bits reported by [Lstat] and [Stat] for
    reparse points changed. Mount points no longer have [ModeSymlink] set,
    and reparse points that are not symlinks, Unix sockets, or dedup files
    now always have [ModeIrregular] set.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 386 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/guarantee-all-funcs-one-use.mlir

    // -----
    // Handle error case of infinite recursion.
    // expected-error @+1 {{recursive call graph cannot be transformed}}
    module {
      func.func private @f() {
        func.call @f() : () -> ()
        func.call @f() : () -> ()
        func.return
      }
    }
    
    // -----
    // Handle error case of infinite recursion with mutually recursive ops.
    // expected-error @+1 {{recursive call graph cannot be transformed}}
    module {
      func.func private @f() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue39938.go

            _ E0[T0]
    }
    
    type T0_ struct {
            E0[T0_]
    }
    
    type T1 struct {
            _ E1[T1]
    }
    
    type T2 /* ERROR "invalid recursive type" */ struct {
            _ E2[T2]
    }
    
    type T3 struct {
            _ E3[T3]
    }
    
    type T4 /* ERROR "invalid recursive type" */ [10]E5[T4]
    
    type T5 struct {
    	_ E0[E2[T5]]
    }
    
    type T6 struct {
    	_ E0[E2[E0[E1[E2[[10]T6]]]]]
    }
    
    type T7 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 948 bytes
    - Viewed (0)
  7. src/go/types/infer.go

    // than type parameters, and params and args must match in number (incl. zero).
    // If reverse is set, an error message's contents are reversed for a better error message for some
    // errors related to reverse type inference (where the function call is synthetic).
    // If successful, infer returns the complete list of given and inferred type arguments, one for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. docs/pt/docs/project-generation.md

    GitHub: <a href="https://github.com/tiangolo/full-stack-fastapi-postgresql" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-fastapi-postgresql</a>
    
    ### Full Stack FastAPI PostgreSQL - Recursos
    
    * Integração completa **Docker**.
    * Modo de implantação Docker Swarm.
    * Integração e otimização **Docker Compose** para desenvolvimento local.
    * **Pronto para Produção** com servidor _web_ usando Uvicorn e Gunicorn.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 05:50:32 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  9. test/fixedbugs/bug256.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type T U	// bogus "invalid recursive type T" from 6g
    type U int
    
    const x T = 123
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 316 bytes
    - Viewed (0)
  10. .idea/inspectionProfiles/idea_default.xml

            <constraint name="__context__" within="" contains="" />
            <constraint name="runnable" within="" contains="" />
          </searchConfiguration>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top