Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 331 for happen (0.62 sec)

  1. src/crypto/x509/x509.go

    	// it may represent the reasonCode extension being present and explicitly
    	// containing a value of 0/Unspecified (which should not happen according to
    	// the DER encoding rules, but can and does happen anyway).
    	ReasonCode int
    
    	// Extensions contains raw X.509 extensions. When parsing CRL entries,
    	// this can be used to extract non-critical extensions that are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      std::vector<Value> tmp_while_operands;
      Append(tmp_while_operands, loop_operands_0);
      Append(tmp_while_operands, loop_operands_1);
      Append(tmp_while_operands, loop_operands_2);
      Append(tmp_while_operands, forward_res_0);
      Append(tmp_while_operands, forward_res_1);
      Append(tmp_while_operands, core_tpu_res_0);
      Append(tmp_while_operands, non_tpu_res_1);
      Append(tmp_while_operands, {C_0, C_1, C_2});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                    formatter.append(" annotation on property ");
                    formatter.appendMethod(method);
                    formatter.append(" of type ");
                    formatter.append(TypeToken.of(returnType).toString());
                    formatter.append(". Allowed property types: ");
                    formatter.append(allowedTypes.stream()
                        .map(TypeToken::toString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    							Count:   5,
    							Timeout: time.Second,
    							Check:   check.OK(),
    							To:      localDst,
    						}
    						// allow for delay between prometheus pulls from target pod
    						// pulls should happen every 15s, so timeout if not found within 30s
    
    						query := buildQuery(localSrc, localDst)
    						stc.Logf("prometheus query: %#v", query)
    						err := retry.Until(func() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminConfigBadJSON, err), r.URL)
    		return
    	}
    
    	if err := updateReq.Validate(); err != nil {
    		// Since this validation would happen client side as well, we only send
    		// a generic error message here.
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    				s.t.Helper()
    				s.assertNoEvent(s.t)
    			},
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			s := newAmbientTestServer(t, testC, testNW)
    			// These steps happen for every test regardless of traffic type.
    			// It involves creating a waypoint for the specified traffic type
    			// then creating a workload and a service with no annotations set
    			// on these objects yet.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    }
    
    func stacks(p *profile.Profile) (res [][]string) {
    	for _, s := range p.Sample {
    		var stk []string
    		for _, l := range s.Location {
    			for _, line := range l.Line {
    				stk = append(stk, line.Function.Name)
    			}
    		}
    		res = append(res, stk)
    	}
    	return res
    }
    
    func containsStack(got [][]string, want []string) bool {
    	for _, stk := range got {
    		if len(stk) < len(want) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    	}
    	if p.comments == nil {
    		// initialize p.comments lazily
    		p.comments = make([]*ast.CommentGroup, 1)
    	} else if p.cindex < len(p.comments) {
    		// for some reason there are pending comments; this
    		// should never happen - handle gracefully and flush
    		// all comments up to g, ignore anything after that
    		p.flush(p.posFor(g.List[0].Pos()), token.ILLEGAL)
    		p.comments = p.comments[0:1]
    		// in debug mode, report error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    	if len(trimmedExpression) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("expression"), ""))
    	} else {
    		allErrors = append(allErrors, validateMatchConditionsExpression(trimmedExpression, opts, fldPath.Child("expression"))...)
    	}
    	if len(v.Name) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("name"), ""))
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    			} else {
    				base.Errorf("%s", str)
    			}
    			fmt.Printf("FAIL\t%s [setup failed]\n", p.ImportPath)
    			continue
    		}
    		builds = append(builds, buildTest)
    		runs = append(runs, runTest)
    		prints = append(prints, printTest)
    	}
    
    	// Order runs for coordinating start JSON prints.
    	ch := make(chan struct{})
    	close(ch)
    	for _, a := range runs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top