Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 315 for 9$ (0.26 sec)

  1. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class:        testClass(badName, goodName),
    		},
    		"generate-name": {
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template:     testClaimTemplate(badName, goodNS, goodClaimSpec),
    		},
    		"missing-namespace": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "namespace"), "")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim:        testClaim(badName, goodNS, goodClaimSpec),
    		},
    		"missing-namespace": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "namespace"), "")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/api/JavaVersionSpec.groovy

            JavaVersion.toVersion('9-pre+105') == JavaVersion.VERSION_1_9
            JavaVersion.toVersion('6.0.42-8beta+4') == JavaVersion.VERSION_1_6
        }
    
        def 'can recognize version with $opt'() {
            expect:
            JavaVersion.toVersion('9+-foo') == JavaVersion.VERSION_1_9
            JavaVersion.toVersion('9-pre-opt') == JavaVersion.VERSION_1_9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/builtin.go

    	typ  int
    }{
    	{"newobject", funcTag, 4},
    	{"mallocgc", funcTag, 8},
    	{"panicdivide", funcTag, 9},
    	{"panicshift", funcTag, 9},
    	{"panicmakeslicelen", funcTag, 9},
    	{"panicmakeslicecap", funcTag, 9},
    	{"throwinit", funcTag, 9},
    	{"panicwrap", funcTag, 9},
    	{"gopanic", funcTag, 11},
    	{"gorecover", funcTag, 14},
    	{"goschedguarded", funcTag, 9},
    	{"goPanicIndex", funcTag, 16},
    	{"goPanicIndexU", funcTag, 18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pkg/controller/job/success_policy_test.go

    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 2}, {4, 7}},
    			successPolicy: &batch.SuccessPolicy{
    				Rules: []batch.SuccessPolicyRule{
    					{
    						SucceededIndexes: ptr.To("9"),
    					},
    					{
    						SucceededIndexes: ptr.To("4,6"),
    					},
    				},
    			},
    			wantMessage:          "Matched rules at index 1",
    			wantMetSuccessPolicy: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params-str-validations.md

    To do that, you can declare that `None` is a valid type but still use `...` as the default:
    
    === "Python 3.10+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/query_params_str_validations/tutorial006c_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/query_params_str_validations/tutorial006c_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pkg/registry/batch/cronjob/strategy_test.go

    					ResourceVersion: "9",
    					Generation:      0,
    				},
    				Spec: validCronjobSpec,
    				Status: batch.CronJobStatus{
    					LastScheduleTime: &now,
    				},
    			},
    			cronjob: &batch.CronJob{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "mycronjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "9",
    					Generation:      0,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritePPC64latelower.go

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (SETBC [2] cmp)
    	// cond: buildcfg.GOPPC64 <= 9
    	// result: (ISELZ [2] (MOVDconst [1]) cmp)
    	for {
    		if auxIntToInt32(v.AuxInt) != 2 {
    			break
    		}
    		cmp := v_0
    		if !(buildcfg.GOPPC64 <= 9) {
    			break
    		}
    		v.reset(OpPPC64ISELZ)
    		v.AuxInt = int32ToAuxInt(2)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVDconst, typ.Int64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            then:
            result.assertTasksExecuted(":declared")
            assertStateStoredAndDiscardedForDeclaredTask(9)
    
            when:
            configurationCacheRun("declared")
    
            then:
            result.assertTasksExecuted(":declared")
            assertStateStoredAndDiscardedForDeclaredTask(9)
        }
    
        def "incompatible task problems are not subtracted from max-problems"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top