Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for stanza (0.13 sec)

  1. src/strconv/atoc.go

    // When bitSize=64, the result still has type complex128, but it will be
    // convertible to complex64 without changing its value.
    //
    // The number represented by s must be of the form N, Ni, or N±Ni, where N stands
    // for a floating-point number as recognized by [ParseFloat], and i is the imaginary
    // component. If the second N is unsigned, a + sign is required between the two components
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/StandAloneNestedBuild.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.build;
    
    /**
     * A stand alone nested build, which is a nested build that runs as part of some containing build as a single atomic step, without participating in task execution of the containing build.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 963 bytes
    - Viewed (0)
  3. test/typeparam/typelist.go

    	return p["test"]
    }
    
    // Testing partial and full type inference, including the case where the types can
    // be inferred without needing the types of the function arguments.
    
    // Cannot embed stand-alone type parameters. Disabled for now.
    /*
    func f0[A any, B interface{type C}, C interface{type D}, D interface{type A}](A, B, C, D)
    func f0x() {
            f := f0[string]
            f("a", "b", "c", "d")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. internal/event/target/nats.go

    	}
    	clientID := u.String()
    
    	connOpts := []stan.Option{stan.NatsURL(addressURL)}
    	if n.Streaming.MaxPubAcksInflight > 0 {
    		connOpts = append(connOpts, stan.MaxPubAcksInflight(n.Streaming.MaxPubAcksInflight))
    	}
    	if n.UserCredentials != "" {
    		connOpts = append(connOpts, stan.NatsOptions(nats.UserCredentials(n.UserCredentials)))
    	}
    
    	return stan.Connect(n.Streaming.ClusterID, clientID, connOpts...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. docs/pl/docs/help-fastapi.md

    * W wielu przypadkach lepiej zrozumieć ich **podstawowy problem lub przypadek użycia**, ponieważ może istnieć lepszy sposób rozwiązania niż to, co próbują zrobić.
    
    ### Poproś o zamknięcie
    
    Jeśli odpowiedzą, jest duża szansa, że rozwiązałeś ich problem, gratulacje, **jesteś bohaterem**! 🦸
    
    * Jeśli Twoja odpowiedź rozwiązała problem, możesz poprosić o:
    
        * W Dyskusjach na GitHubie: oznaczenie komentarza jako **odpowiedź**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/encoding/gob/example_test.go

    func Example_basic() {
    	// Initialize the encoder and decoder. Normally enc and dec would be
    	// bound to network connections and the encoder and decoder would
    	// run in different processes.
    	var network bytes.Buffer        // Stand-in for a network connection
    	enc := gob.NewEncoder(&network) // Will write to network.
    	dec := gob.NewDecoder(&network) // Will read from network.
    
    	// Encode (send) some values.
    	err := enc.Encode(P{3, 4, 5, "Pythagoras"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

        MatchesSignatureGeneratingSignatureTreeVisitor(CodeBlock.Builder result) {
            this.result = result;
        }
    
        /**
         * @param paramIndex index of the parameter in the signatures, -1 stands for the receiver
         */
        void visit(SignatureTree current, int paramIndex) {
            CallInterceptionRequest leafInCurrent = current.getLeafOrNull();
            if (leafInCurrent != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/encoding/gob/example_encdec_test.go

    	_, err := fmt.Fscanln(b, &v.x, &v.y, &v.z)
    	return err
    }
    
    // This example transmits a value that implements the custom encoding and decoding methods.
    func Example_encodeDecode() {
    	var network bytes.Buffer // Stand-in for the network.
    
    	// Create an encoder and send a value.
    	enc := gob.NewEncoder(&network)
    	err := enc.Encode(Vector{3, 4, 5})
    	if err != nil {
    		log.Fatal("encode:", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/internal/genflags/vetflag.go

    		Usage string
    	}
    	if err := json.Unmarshal(out.Bytes(), &analysisFlags); err != nil {
    		return nil, fmt.Errorf("go vet: can't unmarshal JSON from %s -flags: %v", tool, err)
    	}
    
    	// parse the flags to figure out which ones stand for analyses
    	analyzerSet := make(map[string]bool)
    	rEnable := regexp.MustCompile("^enable .+ analysis$")
    	for _, flag := range analysisFlags {
    		if rEnable.MatchString(flag.Usage) {
    			analyzerSet[flag.Name] = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. docs/distributed/README.md

    ## Get started
    
    If you're aware of stand-alone MinIO set up, the process remains largely the same. MinIO server automatically switches to stand-alone or distributed mode, depending on the command line parameters.
    
    ### 1. Prerequisites
    
    Install MinIO either on Kubernetes or Distributed Linux.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top