Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for groupOne (0.12 sec)

  1. src/crypto/x509/pkix/pkix.go

    	ExtraNames []AttributeTypeAndValue
    }
    
    // FillFromRDNSequence populates n from the provided [RDNSequence].
    // Multi-entry RDNs are flattened, all entries are added to the
    // relevant n fields, and the grouping is not preserved.
    func (n *Name) FillFromRDNSequence(rdns *RDNSequence) {
    	for _, rdn := range *rdns {
    		if len(rdn) == 0 {
    			continue
    		}
    
    		for _, atv := range rdn {
    			n.Names = append(n.Names, atv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/eds.go

    	// Despite this code existing on the SotW code path, sending these partial pushes is still allowed;
    	// see https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#grouping-resources-into-responses
    	if !req.Full || canSendPartialFullPushes(req) {
    		edsUpdatedServices = model.ConfigNamesOfKind(req.ConfigsUpdated, kind.ServiceEntry)
    	}
    	var resources model.Resources
    	empty := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   implementation should be enough most of the time when writing
    //   death tests; though it lacks many features you can find in PCRE
    //   or POSIX extended regex syntax.  For example, we don't support
    //   union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and
    //   repetition count ("x{5,7}"), among others.
    //
    //   Below is the syntax that we do support.  We chose it to be a
    //   subset of both PCRE and POSIX extended regex, so it's easy to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/html/template/js_test.go

    		// A block followed by a statement starting with a RegExp is
    		// much more common:
    		//     while (x) {...} /foo/.test(x) || panic()
    		{jsCtxRegexp, "}"},
    		// But member, call, grouping, and array expression terminators
    		// precede div ops.
    		{jsCtxDivOp, ")"},
    		{jsCtxDivOp, "]"},
    		// At the start of a primary expression, array, or expression
    		// statement, expect a regexp.
    		{jsCtxRegexp, "("},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   implementation should be enough most of the time when writing
    //   death tests; though it lacks many features you can find in PCRE
    //   or POSIX extended regex syntax.  For example, we don't support
    //   union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and
    //   repetition count ("x{5,7}"), among others.
    //
    //   Below is the syntax that we do support.  We chose it to be a
    //   subset of both PCRE and POSIX extended regex, so it's easy to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    // and "nonViolatingPods" based on whether their PDBs will be violated if they are
    // preempted.
    // This function is stable and does not change the order of received pods. So, if it
    // receives a sorted list, grouping will preserve the order of the input list.
    func filterPodsWithPDBViolation(podInfos []*framework.PodInfo, pdbs []*policy.PodDisruptionBudget) (violatingPodInfos, nonViolatingPodInfos []*framework.PodInfo) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        @Internal
        public boolean getGroupByInstances() {
            return groupByInstances;
        }
    
        /**
         * Indicates whether the tests should be grouped by instances. Grouping by instances will result in resolving test method dependencies for each instance instead of running the dependees of all
         * instances before running the dependants.
         *
         * Not required.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/emitter.go

    			// required events.
    			cw.size = 0
    			enc := json.NewEncoder(&cw)
    			enc.Encode(data)
    			requiredSize := cw.size
    
    			// Then calculate size of each individual event and
    			// their stack frames, grouping them into ranges. We
    			// only include stack frames relevant to the events in
    			// the range to reduce overhead.
    
    			var (
    				start = 0
    
    				eventsSize = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    		fun
    	  The result is the value of invoking the function, fun(). The return
    	  types and values behave as in methods. Functions and function
    	  names are described below.
    	- A parenthesized instance of one the above, for grouping. The result
    	  may be accessed by a field or map key invocation.
    		print (.F1 arg1) (.F2 arg2)
    		(.StructValuedMethod "arg").Field
    
    Arguments may evaluate to any type; if they are pointers the implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    					ds = append(ds, d)
    				} else {
    					// Synthesize a GenDecl with just the Specs we need.
    					nd := *d // copy the GenDecl
    					nd.Specs = specs
    					if len(specs) == 1 {
    						// Remove grouping parens if there is only one spec.
    						nd.Lparen = 0
    					}
    					ds = append(ds, &nd)
    				}
    			}
    		}
    	}
    	return ds, unresolved
    }
    
    func hasIota(s ast.Spec) bool {
    	has := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top