Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 585 for respective (0.24 sec)

  1. src/text/scanner/scanner.go

    //
    //	ScanIdents | ScanInts | SkipComments
    //
    // With the exceptions of comments, which are skipped if SkipComments is
    // set, unrecognized tokens are not ignored. Instead, the scanner simply
    // returns the respective individual characters (or possibly sub-tokens).
    // For instance, if the mode is ScanIdents (not ScanStrings), the string
    // "foo" is scanned as the token sequence '"' [Ident] '"'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/go/printer/testdata/comments.golden

    	i++ /* comment before opening curly brace */ {
    	}
    }
    
    // If there is no newline following punctuation, commas move before the punctuation.
    // This way, commas interspersed in lists stay with the respective expression.
    func f(x /* comment */, y int, z int /* comment */, u, v, w int /* comment */) {
    	f(x /* comment */, y)
    	f(x,	/* comment */
    		y)
    	f(
    		x,	/* comment */
    	)
    }
    
    func g(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  3. src/go/printer/testdata/comments.input

    		i++ /* comment before opening curly brace */ {
    	}
    }
    
    // If there is no newline following punctuation, commas move before the punctuation.
    // This way, commas interspersed in lists stay with the respective expression.
    func f(x/* comment */, y int, z int /* comment */, u, v, w int /* comment */) {
    	f(x /* comment */, y)
    	f(x /* comment */,
    	y)
    	f(
    		x /* comment */,
    	)
    }
    
    func g(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  4. src/go/doc/doc.go

    	Examples []*Example
    }
    
    // Func is the documentation for a func declaration.
    type Func struct {
    	Doc  string
    	Name string
    	Decl *ast.FuncDecl
    
    	// methods
    	// (for functions, these fields have the respective zero value)
    	Recv  string // actual   receiver "T" or "*T" possibly followed by type parameters [P1, ..., Pn]
    	Orig  string // original receiver "T" or "*T"
    	Level int    // embedding level; 0 means not embedded
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// instantiate S with the type-parameters A and B, which are scoped to the
    	// respective methods. L4 and L5 each instantiate S with int. Each of these
    	// instantiations has its own method set, full of methods (and thus objects)
    	// with receivers whose types are the respective instantiations. In other
    	// words, we have
    	//
    	// S[A].Foo, S[A].Bar
    	// S[B].Foo, S[B].Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/values.yaml

        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/values.yaml

        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/signature.go

    						check.recvTParamMap = make(map[*syntax.Name]*TypeParam)
    					}
    					check.recvTParamMap[p] = tparams[i]
    				}
    			}
    			// determine receiver type to get its type parameters
    			// and the respective type parameter bounds
    			var recvTParams []*TypeParam
    			if rname != nil {
    				// recv should be a Named type (otherwise an error is reported elsewhere)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typeset.go

    //           a special type).
    
    // intersectTermLists computes the intersection of two term lists and respective comparable bits.
    // xcomp, ycomp are valid only if xterms.isAll() and yterms.isAll() respectively.
    func intersectTermLists(xterms termlist, xcomp bool, yterms termlist, ycomp bool) (termlist, bool) {
    	terms := xterms.intersect(yterms)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/instantiate.go

    // not guarantee that identical instances are deduplicated in all cases.
    //
    // If validate is set, Instantiate verifies that the number of type arguments
    // and parameters match, and that the type arguments satisfy their respective
    // type constraints. If verification fails, the resulting error may wrap an
    // *ArgumentError indicating which type argument did not satisfy its type parameter
    // constraint, and why.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top