Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Obj (0.19 sec)

  1. pkg/printers/internalversion/printers.go

    		timeZone = *obj.Spec.TimeZone
    	}
    
    	row.Cells = append(row.Cells, obj.Name, obj.Spec.Schedule, timeZone, printBoolPtr(obj.Spec.Suspend), int64(len(obj.Status.Active)), lastScheduleTime, translateTimestampSince(obj.CreationTimestamp))
    	if options.Wide {
    		names, images := layoutContainerCells(obj.Spec.JobTemplate.Spec.Template.Spec.Containers)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				st.MakePod().Name("p-a2").Node("node-a").Label("foo", "").Obj(),
    				st.MakePod().Name("p-b1").Node("node-b").Label("foo", "").Obj(),
    				st.MakePod().Name("p-y1").Node("node-y").Label("foo", "").Obj(),
    				st.MakePod().Name("p-y2").Node("node-y").Label("foo", "").Obj(),
    				st.MakePod().Name("p-y3").Node("node-y").Label("foo", "").Obj(),
    				st.MakePod().Name("p-y4").Node("node-y").Label("foo", "").Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	return nil
    }
    func (t *testRESTStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    func (t *testRESTStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return nil
    }
    func (t *testRESTStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    func isJump(p *obj.Prog) bool {
    	return p.To.Target() != nil || p.As == obj.AJMP || p.As == obj.ACALL ||
    		p.As == obj.ARET || p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO
    }
    
    // lookForJCC returns the first real instruction starting from p, if that instruction is a conditional
    // jump. Otherwise, nil is returned.
    func lookForJCC(p *obj.Prog) *obj.Prog {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    			AVST2,
    			AVST3,
    			AVST4,
    			AVDUP,
    			AVMOVI,
    			APRFM,
    			AVEXT,
    			AVXAR:
    			break
    
    		case obj.ANOP,
    			obj.AUNDEF,
    			obj.AFUNCDATA,
    			obj.APCALIGN,
    			obj.APCALIGNMAX,
    			obj.APCDATA,
    			obj.ADUFFZERO,
    			obj.ADUFFCOPY:
    			break
    		}
    	}
    }
    
    // chipfloat7() checks if the immediate constants available in  FMOVS/FMOVD instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{
    			name:   "integer",
    			obj:    1,
    			oldObj: 2,
    			schema: withRule(integerType, `
    				!oldSelf.hasValue() || self == 1
    			`),
    		},
    		{
    			name:   "number",
    			obj:    1.1,
    			oldObj: 2.2,
    			schema: withRule(numberType, `
    				!oldSelf.hasValue() || self == 1.1
    			`),
    		},
    		{
    			name:   "boolean",
    			obj:    true,
    			oldObj: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    			ADARN,
    			AVMSUMUDM,
    			AADDEX,
    			ACMPEQB,
    			ACLRLSLWI,
    			AMTVSRDD,
    			APNOP,
    			AISEL,
    			ASETB,
    			obj.ANOP,
    			obj.ATEXT,
    			obj.AUNDEF,
    			obj.AFUNCDATA,
    			obj.APCALIGN,
    			obj.APCDATA,
    			obj.ADUFFZERO,
    			obj.ADUFFCOPY:
    			break
    		}
    	}
    }
    
    func OPVXX1(o uint32, xo uint32, oe uint32) uint32 {
    	return o<<26 | xo<<1 | oe<<11
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    		st.MakeNode().Name("node1").UID("node1").Obj(),
    		st.MakeNode().Name("node2").UID("node2").Obj(),
    		st.MakeNode().Name("node3").UID("node3").Obj(),
    	}
    	pods := []*v1.Pod{
    		st.MakePod().Name("pod1").UID("pod1").SchedulerName("match-node3").Obj(),
    		st.MakePod().Name("pod2").UID("pod2").SchedulerName("match-node2").Obj(),
    		st.MakePod().Name("pod3").UID("pod3").SchedulerName("match-node2").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		return nil, false, err
    	}
    	storage.updated = obj.(*genericapitesting.Simple)
    	if err := storage.errors["update"]; err != nil {
    		return nil, false, err
    	}
    	if storage.injectedFunction != nil {
    		obj, err = storage.injectedFunction(obj)
    	}
    	if err := updateValidation(ctx, &storage.item, obj); err != nil {
    		return nil, false, err
    	}
    	return obj, false, err
    }
    
    // Implement ResourceWatcher.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    			}
    			obj.Items = append(obj.Items, pod)
    		}
    		return true, obj, nil
    	})
    
    	fakeClient.AddReactor("update", "horizontalpodautoscalers", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		handled, obj, err := func() (handled bool, ret *autoscalingv2.HorizontalPodAutoscaler, err error) {
    			tc.Lock()
    			defer tc.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top