Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for combinations (0.26 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    //  Bool()                     - Yields sequence {false, true}.
    //  Combine(g1, g2, ..., gN)   - Yields all combinations (the Cartesian product
    //                               for the math savvy) of the values generated
    //                               by the N generators.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

         * A ConstructedNestedClass consists of an outer class and a name part, denoting a nested class with an unknown number of levels down. This allows resolve tests to skip this node for further inner
         * class searches and combinations with imports, since the outer class we know is already resolved.
         */
        private static class ConstructedNestedClass extends ClassNode {
            private final ClassNode knownEnclosingType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    You can also assemble _all_ of the dependents of a component (i.e. of all its binaries/variants) using the corresponding component task, e.g. `assembleDependentsOperators`. This is useful if you have many combinations of build types, flavors and platforms and want to assemble all of them.
    
    [[sec:build_dependents]]
    === Building dependents
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    //  Bool()                     - Yields sequence {false, true}.
    //  Combine(g1, g2, ..., gN)   - Yields all combinations (the Cartesian product
    //                               for the math savvy) of the values generated
    //                               by the N generators.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    // This input extends auto-generated amd64enc.s test suite
    // with manually added tests.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// AVX2GATHER: basic combinations.
    	VPGATHERDQ Y2, (BP)(X7*2), Y1           // c4e2ed904c7d00
    	VPGATHERDQ X12, (R13)(X14*2), X11       // c40299905c7500
    	VPGATHERDQ Y12, (R13)(X14*2), Y11       // c4029d905c7500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	},
    	ErrOverlappingFilterNotification: {
    		Code:           "InvalidArgument",
    		Description:    "An object key name filtering rule defined with overlapping prefixes, overlapping suffixes, or overlapping combinations of prefixes and suffixes for the same event types.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNameInvalid: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    			t.Fatal("cmpAbsTests entries not sorted in ascending order")
    		}
    		values[i] = x
    		prev = x
    	}
    
    	for i, x := range values {
    		for j, y := range values {
    			// try all combinations of signs for x, y
    			for k := 0; k < 4; k++ {
    				var a, b Int
    				a.Set(x)
    				b.Set(y)
    				if k&1 != 0 {
    					a.Neg(&a)
    				}
    				if k&2 != 0 {
    					b.Neg(&b)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	// Creates compound/prefix transformers with different ordering of available transformers.
    	// Transforms data using one of them, and tries to untransform using the others.
    	// Repeats this for all possible combinations.
    	// Math for GracePeriod is explained at - https://github.com/kubernetes/kubernetes/blob/c9ed04762f94a319d7b1fb718dc345491a32bea6/staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go#L159-L163
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	// clean up the temporary test backend.
    	removeRoots(append(erasureDisks, fsDir))
    }
    
    // ExecExtendedObjectLayerTest will execute the tests with combinations of encrypted & compressed.
    // This can be used to test functionality when reading and writing data.
    func ExecExtendedObjectLayerAPITest(t *testing.T, objAPITest objAPITestType, endpoints []string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	pendingFinalizers := len(accessor.GetFinalizers()) != 0
    	var ignoreNotFound bool
    	var deleteImmediately bool = true
    	var lastExisting, out runtime.Object
    
    	// Handle combinations of graceful deletion and finalization by issuing
    	// the correct updates.
    	shouldUpdateFinalizers, _ := deletionFinalizersForGarbageCollection(ctx, e, accessor, options)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top