Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for typeSet (0.11 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Binding) DeepCopyInto(out *Binding) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Target = in.Target
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Binding) DeepCopyInto(out *Binding) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Target = in.Target
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    var testFinishedAt = metav1.NewTime((time.Time{}).Add(time.Second))
    
    func newJobWithName(name string, parallelism, completions, backoffLimit int32, completionMode batch.CompletionMode) *batch.Job {
    	j := &batch.Job{
    		TypeMeta: metav1.TypeMeta{Kind: "Job"},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			UID:       uuid.NewUUID(),
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: batch.JobSpec{
    			Selector: &metav1.LabelSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      for (int i = 0; i < M; ++i) {
        Type t = GetType(input_elements.shapes[i], input_elements.types[i]);
        t = TypeMeet(*it, t);
        changed = changed || (t != *it);
        *it++ = t;
      }
      // Now the remaining N from operand types.
      for (auto t : llvm::drop_begin(op->getOperandTypes())) {
        auto meet = TypeMeet(*it, t);
        changed = changed || (meet != *it);
        *it++ = meet;
      }
      if (!changed) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    			t.Errorf("mismatch: %s", cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    func TestPrintStorageVersionMigration(t *testing.T) {
    	storageVersionMigration := storagemigration.StorageVersionMigration{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "StorageVersionMigration",
    			APIVersion: "storagemigration.k8s.io/v1alpha1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "print-test",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.set.all(e, e < 10)",
    				"size(self.set.filter(e, e%2 == 0)) == 2",
    				"self.set.map(e, e * 20).filter(e, e > 50).exists_one(e, e == 60)",
    				"size(self.set) == 5",
    			},
    		},
    		{name: "typemeta and objectmeta access specified",
    			obj: map[string]interface{}{
    				"apiVersion": "v1",
    				"kind":       "Pod",
    				"metadata": map[string]interface{}{
    					"name":         "foo",
    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. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	// The goal here is to trigger when any changes are made to either
    	// CreateOptions or UpdateOptions types, so we can update the converter.
    	for i := 0; i < 20; i++ {
    		in := &metav1.UpdateOptions{}
    		f.Fuzz(in)
    		in.TypeMeta.SetGroupVersionKind(metav1.SchemeGroupVersion.WithKind("CreateOptions"))
    
    		out := newCreateOptionsFromUpdateOptions(in)
    
    		// This sequence is intending to elide type information, but produce an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top