Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 9,318 for haxe (0.35 sec)

  1. src/runtime/trace2map_test.go

    			id, inserted := m.PutString(s)
    			if !inserted {
    				t.Errorf("expected to have inserted string %q, but did not", s)
    			}
    			if id != uint64(i+1) {
    				t.Errorf("expected string %q to have ID %d, but got %d instead", s, i+1, id)
    			}
    		}
    		for i, s := range d {
    			id, inserted := m.PutString(s)
    			if inserted {
    				t.Errorf("inserted string %q, but expected to have not done so", s)
    			}
    			if id != uint64(i+1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 18:52:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    				t.Fatalf("Manager should not have an error %v", err)
    			}
    			// we should have disk pressure (because transition period not yet met)
    			if !manager.IsUnderDiskPressure() {
    				t.Fatalf("Manager should report disk pressure")
    			}
    
    			// no pod should have been killed
    			if podKiller.pod != nil {
    				t.Fatalf("Manager chose to kill pod: %v when no pod should have been killed", podKiller.pod.Name)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/separate-openapi-schemas.md

    In fact, in some cases, it will even have **two JSON Schemas** in OpenAPI for the same Pydantic model, for input and output, depending on if they have **default values**.
    
    Let's see how that works and how to change it if you need to do that.
    
    ## Pydantic Models for Input and Output
    
    Let's say you have a Pydantic model with default values, like this one:
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue51232.go

    type F[RCT RC[RG], RG any] interface {
    	Fn() Fn /* ERROR "not enough type arguments for type Fn: have 1, want 2" */ [RCT]
    }
    
    type concreteF[RCT RC[RG], RG any] struct {
    	makeFn func() Fn /* ERROR "not enough type arguments for type Fn: have 1, want 2" */ [RCT]
    }
    
    func (c *concreteF[RCT, RG]) Fn() Fn /* ERROR "not enough type arguments for type Fn: have 1, want 2" */ [RCT] {
    	return c.makeFn()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 989 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers_test.go

    				},
    			},
    		},
    		{
    			name: "set new condition which doesn't have lastTransitionTime set",
    			crdCondition: []CustomResourceDefinitionCondition{
    				{
    					Type:               Established,
    					Status:             ConditionTrue,
    					Reason:             "Accepted",
    					Message:            "the initial names have been accepted",
    					LastTransitionTime: metav1.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 17 19:08:05 UTC 2019
    - 15.4K bytes
    - Viewed (0)
  6. test/typeparam/issue51232.go

    type F[RCT RC[RG], RG any] interface {
    	Fn() Fn[RCT] // ERROR "not enough type arguments for type Fn: have 1, want 2"
    }
    
    type concreteF[RCT RC[RG], RG any] struct {
    	makeFn func() Fn[RCT] // ERROR "not enough type arguments for type Fn: have 1, want 2"
    }
    
    func (c *concreteF[RCT, RG]) Fn() Fn[RCT] { // ERROR "not enough type arguments for type Fn: have 1, want 2"
    	return c.makeFn()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 898 bytes
    - Viewed (0)
  7. samples/open-telemetry/tracing/README.md

    If you have not deployed the `Jaeger` service, you can follow [this](https://istio.io/latest/docs/ops/integrations/jaeger/) installation to install the service.
    
    You may also choose any existing tracing system if you have, and you should change the exporter settings in the configmap mentioned above.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. test/mainsig.go

    package main
    
    func main(int)  {}           // ERROR "func main must have no arguments and no return values"
    func main() int { return 1 } // ERROR "func main must have no arguments and no return values" "main redeclared in this block"
    
    func init(int)  {}           // ERROR "func init must have no arguments and no return values"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 17 04:43:46 UTC 2020
    - 598 bytes
    - Viewed (0)
  9. docs/de/docs/history-design-future.md

    Es war beispielsweise klar, dass es idealerweise auf Standard-Python-Typhinweisen basieren sollte.
    
    Der beste Ansatz bestand außerdem darin, bereits bestehende Standards zu nutzen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:48 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pkg/registry/registrytest/validate.go

    				errs = append(errs, fmt.Errorf("store for type [%v] does not have a CreateStrategy", k))
    			}
    			if t.GetUpdateStrategy() == nil {
    				errs = append(errs, fmt.Errorf("store for type [%v] does not have an UpdateStrategy", k))
    			}
    			if t.GetDeleteStrategy() == nil {
    				errs = append(errs, fmt.Errorf("store for type [%v] does not have a DeleteStrategy", k))
    			}
    		}
    	}
    
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 12 15:56:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top