Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 142 for happen (0.15 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    	for ; count > 0; count-- {
    		imageItem := kubecontainer.Image{
    			ID:       string(uuid.NewUUID()),
    			RepoTags: generateImageTags(),
    			Size:     rand.Int63nRange(minImgSize, maxImgSize+1),
    		}
    		imageList = append(imageList, imageItem)
    	}
    
    	expectedImageList := makeExpectedImageList(imageList, maxImages)
    	return imageList, expectedImageList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less8  (Const8  <t> [math.MaxInt8 -1]) x) => (Eq8  x (Const8  <t> [math.MaxInt8 ]))
    
    // Ands clear bits. Ors set bits.
    // If a subsequent Or will set all the bits
    // that an And cleared, we can skip the And.
    // This happens in bitmasking code like:
    //   x &^= 3 << shift // clear two old bits
    //   x  |= v << shift // set two new bits
    // when shift is a small constant and v ends up a constant 3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		pod := obj.(*example.Pod)
    		if pod.Annotations == nil {
    			pod.Annotations = make(map[string]string)
    		}
    		pod.Annotations[key] = "true"
    	}
    	mile := func(s string) {
    		milestones = append(milestones, s)
    	}
    
    	testCases := []struct {
    		name        string
    		decorator   func(runtime.Object)
    		beginCreate BeginCreateFunc
    		afterCreate AfterCreateFunc
    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. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

            {{- $containers := list }}
            {{- range $index, $container := .Spec.Containers }}{{ if not (eq $container.Name "istio-proxy") }}{{ $containers = append $containers $container.Name }}{{end}}{{- end}}
            metadata:
              labels:
                security.istio.io/tlsMode: {{ index .ObjectMeta.Labels `security.istio.io/tlsMode` | default "istio"  | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	var rel obj.Reloc
    	var v int64
    
    	args := make([]int, 0, argListMax)
    	if ft != Ynone*Ymax {
    		args = append(args, ft)
    	}
    	for i := range p.RestArgs {
    		args = append(args, oclass(ctxt, p, &p.RestArgs[i].Addr)*Ymax)
    	}
    	if tt != Ynone*Ymax {
    		args = append(args, tt)
    	}
    
    	for _, yt := range o.ytab {
    		// ytab matching is purely args-based,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. cmd/object-handlers_test.go

    			t.Fatalf("Object: %s Case %d ByteRange: %s: Unexpected err: %v", object, i+1, byteRange, err)
    		}
    
    		readers := []io.Reader{}
    		cumulativeSum := int64(0)
    		for _, p := range oi.partLengths {
    			readers = append(readers, NewDummyDataGen(p, cumulativeSum))
    			cumulativeSum += p
    		}
    		refReader := io.LimitReader(ioutilx.NewSkipReader(io.MultiReader(readers...), off), length)
    		if ok, msg := cmpReaders(refReader, rec.Body); !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation_test.go

    		},
    	},
    	}
    
    	cmpOpts := []cmp.Option{cmpopts.IgnoreFields(field.Error{}, "BadValue", "Detail"), cmpopts.SortSlices(func(a, b *field.Error) bool { return a.Error() < b.Error() })}
    	for _, testCase := range append(successCases, errorCases...) {
    		name := testCase.name
    		var testTitle string
    		if len(testCase.errs) == 0 {
    			testTitle = fmt.Sprintf("success case %s", name)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/generated.pb.go

    			}
    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Policies = append(m.Policies, HPAScalingPolicy{})
    			if err := m.Policies[len(m.Policies)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 3:
    			if wireType != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 162.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // object, which corresponds to the object graph being a tree.
      //
      // But, there cases where the object graph is a general graph. For
      // example, this happens commonly in Keras models, where `foo.bar` is
      // also reachable via the name `keras_api.foo.bar`.
      // Cycles are possible too.
      absl::flat_hash_map<int, std::vector<std::string>> object_names_;
    
      // Key: node_id
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top