Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 266 for respective (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/go/types/signature.go

    						check.recvTParamMap = make(map[*ast.Ident]*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: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/types2/resolver.go

    	}
    
    	// something went wrong (importer may have returned incomplete package without error)
    	return nil
    }
    
    // collectObjects collects all file and package objects and inserts them
    // into their respective scopes. It also performs imports and associates
    // methods with receiver base type names.
    func (check *Checker) collectObjects() {
    	pkg := check.pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/go/types/resolver.go

    	}
    
    	// something went wrong (importer may have returned incomplete package without error)
    	return nil
    }
    
    // collectObjects collects all file and package objects and inserts them
    // into their respective scopes. It also performs imports and associates
    // methods with receiver base type names.
    func (check *Checker) collectObjects() {
    	pkg := check.pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. pkg/kube/krt/README.md

    * Allow a lightweight form of a `Full -> Subset` transformation, that doesn't create a full new collection (with respective overhead), but rather overlays on top of an existing one.
    
    #### Internal dependency optimizations
    
    Today, the library stores a mapping of `Input -> Dependencies` (`map[Key[I]][]dependency`).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/go/types/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.8K bytes
    - Viewed (0)
Back to top