Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Pull (0.06 sec)

  1. docs/pt/docs/fastapi-people.md

    Estas são as pessoas que:
    
    * [Help others with issues (questions) in GitHub](help-fastapi.md#responda-perguntas-no-github){.internal-link target=_blank}.
    * [Create Pull Requests](help-fastapi.md#crie-um-pull-request){.internal-link target=_blank}.
    * Revisar Pull Requests, [especially important for translations](contributing.md#traducoes){.internal-link target=_blank}.
    
    Uma salva de palmas para eles. 👏 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/mdo/writer.vm

    import ${packageModelV4}.${class.name};
    #end
    import org.codehaus.plexus.util.xml.pull.EntityReplacementMap;
    import org.codehaus.plexus.util.xml.pull.MXParser;
    import org.codehaus.plexus.util.xml.pull.MXSerializer;
    import org.codehaus.plexus.util.xml.pull.XmlPullParser;
    import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
    import org.codehaus.plexus.util.xml.pull.XmlSerializer;
    
    @Deprecated
    @Generated
    public class ${className} {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. docs/zh-hant/docs/fastapi-people.md

    ---
    
    **FastAPI** 獲得了許多社群的大力支持。我想特別表揚他們的貢獻。
    
    這些人包括:
    
    * [在 GitHub 中幫助他人解答問題](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}。
    * [建立 Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}。
    * 審查 Pull Requests,[尤其是翻譯方面的貢獻](contributing.md#translations){.internal-link target=_blank}。
    
    讓我們為他們熱烈鼓掌。 👏 🙇
    
    ## FastAPI 專家
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:07:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/iter/iter.go

    type coro struct{}
    
    //go:linkname newcoro runtime.newcoro
    func newcoro(func(*coro)) *coro
    
    //go:linkname coroswitch runtime.coroswitch
    func coroswitch(*coro)
    
    // Pull converts the “push-style” iterator sequence seq
    // into a “pull-style” iterator accessed by the two functions
    // next and stop.
    //
    // Next returns the next value in the sequence
    // and a boolean indicating whether the value is valid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/cmd/link/testdata/linkname/coro.go

    // license that can be found in the LICENSE file.
    
    // Linkname coroswitch is not allowed, even if iter.Pull
    // is instantiated in the same package.
    
    package main
    
    import (
    	"iter"
    	"unsafe"
    )
    
    func seq(yield func(int) bool) {
    	yield(123)
    }
    
    func main() {
    	next, stop := iter.Pull(seq)
    	next()
    	stop()
    	coroswitch(nil)
    }
    
    //go:linkname coroswitch runtime.coroswitch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 506 bytes
    - Viewed (0)
  6. docs/en/docs/fastapi-people.md

    These are the people that:
    
    * [Help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}.
    * [Create Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
    * Review Pull Requests, [especially important for translations](contributing.md#translations){.internal-link target=_blank}.
    
    A round of applause to them. 👏 🙇
    
    ## FastAPI Experts
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/values.yaml

    defaults:
      hub: gcr.io/istio-testing
      tag: latest
    
      # ImagePullSecrets for operator ServiceAccount, list of secrets in the same namespace
      # used to pull operator image. Must be set for any cluster configured with private docker registry.
      imagePullSecrets: []
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent.
      imagePullPolicy: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/GuidesContributeIncludeProcessorTest.groovy

            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
            content.contains('Please <a href="https://github.com/gradle/guides/issues/new">add an issue</a> or pull request to <a href="https://github.com/gradle/guides">gradle/guides</a>')
        }
    
        def "defaults repo to gradle/guides and issue to blank url when repo-path attribute is defined"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. maven-model/src/main/java/org/apache/maven/model/io/xpp3/package-info.java

    /**
     * XML reader and writer classes for Maven POM, generated from <code>maven.mdo</code> model.
     * These classes use
     * <a href="https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/xml/pull/package-summary.html">plexus-utils'
     * XML Pull Parser API</a> for their internal XML handling and
     * <a href="https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/xml/Xpp3DomBuilder.html">Xpp3DomBuilder</a> +
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 750 bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/values.yaml

    defaults:
      # Hub to pull from. Image will be `Hub/Image:Tag-Variant`
      hub: gcr.io/istio-testing
      # Tag to pull from. Image will be `Hub/Image:Tag-Variant`
      tag: latest
      # Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      variant: ""
    
      # Image name to pull from. Image will be `Hub/Image:Tag-Variant`
      # If Image contains a "/", it will replace the entire `image` in the pod.
      image: ztunnel
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top