Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for Comparer (0.21 sec)

  1. pilot/pkg/model/service_test.go

    	cases := []struct {
    		comparer *WorkloadInstance
    		comparee *WorkloadInstance
    		shouldEq bool
    		name     string
    	}{
    		{
    			comparer: &WorkloadInstance{},
    			comparee: &WorkloadInstance{},
    			shouldEq: true,
    			name:     "two null endpoints",
    		},
    		{
    			comparer: exampleInstance.DeepCopy(),
    			comparee: exampleInstance.DeepCopy(),
    			shouldEq: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/go/types/predicates.go

    }
    
    // An ifacePair is a node in a stack of interface type pairs compared for identity.
    type ifacePair struct {
    	x, y *Interface
    	prev *ifacePair
    }
    
    func (p *ifacePair) identical(q *ifacePair) bool {
    	return p.x == q.x && p.y == q.y || p.x == q.y && p.y == q.x
    }
    
    // A comparer is used to compare types.
    type comparer struct {
    	ignoreTags     bool // if set, identical ignores struct tags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Manipuler les *énumérations* Python
    
    La valeur du *paramètre de chemin* sera un des "membres" de l'énumération.
    
    #### Comparer les *membres d'énumération*
    
    Vous pouvez comparer ce paramètre avec les membres de votre énumération `ModelName` :
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/predicates.go

    }
    
    // An ifacePair is a node in a stack of interface type pairs compared for identity.
    type ifacePair struct {
    	x, y *Interface
    	prev *ifacePair
    }
    
    func (p *ifacePair) identical(q *ifacePair) bool {
    	return p.x == q.x && p.y == q.y || p.x == q.y && p.y == q.x
    }
    
    // A comparer is used to compare types.
    type comparer struct {
    	ignoreTags     bool // if set, identical ignores struct tags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. pkg/serviceaccount/openidmetadata_test.go

    			}
    
    			ks := &jose.JSONWebKeySet{}
    			if err := json.NewDecoder(resp.Body).Decode(ks); err != nil {
    				t.Fatalf("Decode(_) = %v, want: <nil>", err)
    			}
    
    			bigIntComparer := cmp.Comparer(
    				func(x, y *big.Int) bool {
    					return x.Cmp(y) == 0
    				})
    			if !cmp.Equal(tt.WantKeys, ks.Keys, bigIntComparer) {
    				t.Errorf("unexpected diff in JWKS keys (-want, +got): %v",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    				if equal := reflect.DeepEqual(*out, *test.expected); !equal && !test.expectDiff {
    					t.Errorf("unexpected result:\n  want=%v\n   got=%v\n\n%s", *test.expected, *out, cmp.Diff(*test.expected, *out, cmp.Comparer(refEqual)))
    				} else if equal && test.expectDiff {
    					t.Errorf("expected diff, but didn't get any")
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. docs/fr/docs/async.md

    Mais toutes ces fonctionnalités d'utilisation de code asynchrone avec `async` et `await` sont souvent résumées comme l'utilisation des *coroutines*. On peut comparer cela à la principale fonctionnalité clé de Go, les "Goroutines".
    
    ## Conclusion
    
    Reprenons la phrase du début de la page :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. docs/fr/docs/alternatives.md

        Pour plus de détails, consultez la section [Déploiement](deployment/index.md){.internal-link target=_blank}.
    
    ## Benchmarks et vitesse
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry.go

    	return class == networking.ListenerClassSidecarInbound || class == networking.ListenerClassGateway
    }
    
    // Equal compares two computedTelemetries for equality. This was created to help with testing. Because of the nature of the structs being compared,
    // it is safer to use cmp.Equal as opposed to reflect.DeepEqual. Also, because of the way the structs are generated, it is not possible to use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/service.go

    	return p.f(ep, proxy)
    }
    
    func (p *endpointDiscoverabilityPolicyImpl) String() string {
    	return p.name
    }
    
    var endpointDiscoverabilityPolicyImplCmpOpt = cmp.Comparer(func(x, y endpointDiscoverabilityPolicyImpl) bool {
    	return x.String() == y.String()
    })
    
    func (p *endpointDiscoverabilityPolicyImpl) CmpOpts() []cmp.Option {
    	return []cmp.Option{endpointDiscoverabilityPolicyImplCmpOpt}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top