Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 134 for happen (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/autoscaling/v2beta2/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
    - 163K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    func chainsToStrings(chains [][]*Certificate) []string {
    	chainStrings := []string{}
    	for _, chain := range chains {
    		names := []string{}
    		for _, c := range chain {
    			names = append(names, c.Subject.String())
    		}
    		chainStrings = append(chainStrings, strings.Join(names, " -> "))
    	}
    	slices.Sort(chainStrings)
    	return chainStrings
    }
    
    func TestPathBuilding(t *testing.T) {
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    	svcPort := v1.ServicePort{
    		Name:       name,
    		Protocol:   protocol,
    		Port:       port,
    		NodePort:   nodeport,
    		TargetPort: intstr.FromInt32(int32(targetPort)),
    	}
    	return append(array, svcPort)
    }
    
    func TestBuildServiceMapAddRemove(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	ipt := iptablestest.NewFake()
    	ipvs := ipvstest.NewFake()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/generated.pb.go

    			}
    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Items = append(m.Items, HorizontalPodAutoscaler{})
    			if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142.9K bytes
    - Viewed (0)
Back to top