Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 729 for Combine2 (0.11 sec)

  1. test/typeparam/combine.go

    	}
    	gc2 := Combine2(g1, g2)
    	if got, ok := gc2(); ok {
    		panic(fmt.Sprintf("got %v, %v, wanted -/false", got, ok))
    	}
    
    	gc3 := Combine(g1, g3, _NewPair[int, string])
    	if got, ok := gc3(); !ok || got.A != 3 || got.B != "y" {
    		panic(fmt.Sprintf("got %v, %v, wanted {3, y}, true", got, ok))
    	}
    	gc4 := Combine2(g1, g3)
    	if got, ok := gc4(); !ok || got.A != 3 || got.B != "y" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/combined.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    // Combine combines the DefinitionsSchemaResolver with a secondary schema resolver.
    // The resulting schema resolver uses the DefinitionsSchemaResolver for a GVK that DefinitionsSchemaResolver knows,
    // and the secondary otherwise.
    func (d *DefinitionsSchemaResolver) Combine(secondary SchemaResolver) SchemaResolver {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzer.go

    }
    
    // CombinedAnalyzer is an interface used to combine and run multiple analyzers into one
    type CombinedAnalyzer interface {
    	Analyzer
    	RelevantSubset(kinds sets.Set[config.GroupVersionKind]) CombinedAnalyzer
    	RemoveSkipped(schemas collection.Schemas) []string
    	AnalyzerNames() []string
    }
    
    // InternalCombinedAnalyzer is an implementation of CombinedAnalyzer, a special analyzer that combines multiple analyzers into one
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. internal/s3select/sql/analysis.go

    // qProp contains analysis info about an SQL term.
    type qProp struct {
    	isAggregation, isRowFunc bool
    
    	err error
    }
    
    // `combine` combines a pair of `qProp`s, so that errors are
    // propagated correctly, and checks that an aggregation is not being
    // combined with a row-function term.
    func (p *qProp) combine(q qProp) {
    	switch {
    	case p.err != nil:
    		// Do nothing
    	case q.err != nil:
    		p.err = q.err
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. releasenotes/notes/cni-combine-repair-and-install.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 33712
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 30 03:41:37 UTC 2021
    - 213 bytes
    - Viewed (0)
  6. istioctl/pkg/waypoint/testdata/waypoint/combined-gateway

    John Howard <******@****.***> 1713303040 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 338 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // Note that the recomposition map for NFC and NFKC are identical.
    
    // combine returns the combined rune or 0 if it doesn't exist.
    //
    // The caller is responsible for calling
    // recompMapOnce.Do(buildRecompMap) sometime before this is called.
    func combine(a, b rune) rune {
    	key := uint32(uint16(a))<<16 + uint32(uint16(b))
    	if recompMap == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/additional-responses.md

    ```
    
    Tout sera combiné et inclus dans votre OpenAPI, et affiché dans la documentation de l'API :
    
    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combinez les réponses prédéfinies et les réponses personnalisées
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    			if cccB == 0 {
    				s = k - 1
    			} else {
    				blocked = s != k-1 && cccB >= cccC
    			}
    			if !blocked {
    				combined := combine(rb.runeAt(s), rb.runeAt(i))
    				if combined != 0 {
    					rb.assignRune(s, combined)
    					continue
    				}
    			}
    		}
    		b[k] = b[i]
    		k++
    	}
    	rb.nrune = k
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. samples/certs/README.md

    The included sample files are:
    
    - `root-cert.pem`: root CA certificate.
    - `root-cert-alt.pem`: alternative CA certificate.
    - `root-cert-combined.pem`: combine `root-cert.pem` and `root-cert-alt.pem` into a single file.
    - `root-cert-combined-2.pem`: combine `root-cert.pem` and two `root-cert-alt.pem` into a single file.
    - `ca-[cert|key].pem`: Citadel intermediate certificate and corresponding private key.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top