Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for permutation (0.27 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

                this.delegate = delegate;
                this.state = state;
                this.elementType = elementType;
            }
    
            public C getDelegate(boolean forMutation) {
                if (forMutation) {
                    state.assertCanMutate();
                }
                return delegate;
            }
    
            protected void validateElementType(Object o) {
                if (o != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/crypto/cipher/gcm_test.go

    	asm, generic, err := newAESGCM(key[:])
    	if err != nil {
    		t.Fatal(err)
    	}
    	if reflect.TypeOf(asm) == reflect.TypeOf(generic) {
    		t.Skipf("no assembly implementation of GCM")
    	}
    
    	// generate permutations
    	type pair struct{ align, length int }
    	lengths := []int{0, 156, 8192, 8193, 8208}
    	keySizes := []int{16, 24, 32}
    	alignments := []int{0, 1, 2, 3}
    	if testing.Short() {
    		keySizes = []int{16}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessorTest.groovy

            then:
            TestComponentMetadataRule.instanceCount == 2
            rule1Executed
            rule2Executed
    
            where:
            rules << [rule1, rule2, "classRule1", "classRule2"].permutations()
    
        }
    
        private SpecConfigurableRule addRuleForModule(String notation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

            succeeds taskName
    
            then:
            file("build/test.${fileExtension}").md5Hash == expectedHash
    
            where:
            input << [
                ['DIR1/FILE11.txt', 'dir2/file22.txt', 'DIR3/file33.txt'].permutations(),
                ['zip', 'tar']
            ].combinations()
            files = input[0]
            taskName = input[1]
            taskType = taskName.capitalize()
            fileExtension = taskName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                                }
                            }
                        }
                    }
                }
            }
    
            where:
            [chain, testVariant] << [REPO_TYPES.permutations(), TEST_VARIANTS.keySet()].combinations()
        }
    
        def "explicit compile configuration selection works for a chain of pure maven dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            1 * attributeMatcher.isMatching(compatible, requested) >> true
    
            0 * attributeMatcher._
    
            where:
            registrationsIndex << (0..3).permutations()
        }
    
        @Issue("gradle/gradle#7061")
        def "selects chain of transforms that only all the attributes are satisfied"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  7. src/sort/sort.go

    //    V. Raman in Algorithmica (1996) 16, 115-160:
    //    This algorithm either needs additional 2n bits or works only if there
    //    are enough different elements available to encode some permutations
    //    which have to be undone later (so not stable on any input).
    //  - All the optimal in-place sorting/merging algorithms I found are either
    //    unstable or rely on enough different elements in each step to encode the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tls.go

    		// an outbound listener for each pod in a headless service. There is thus no need to do a SNI match. It saves us from having to
    		// generate expensive permutations of the host name just like RDS does..
    		// NOTE that we cannot have two services with the same VIP as our listener build logic will treat it as a collision and
    		// ignore one of the services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      /** Non-NPE RuntimeException. */
      public static class FooException extends RuntimeException {
        private static final long serialVersionUID = 1L;
      }
    
      /**
       * Class for testing all permutations of static/non-static one-argument methods using
       * methodParameter().
       */
      @SuppressWarnings("unused") // used by reflection
      public static class OneArg {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf_test.go

    	//   - things work for both referenced and unreferenced params
    	//   - things work for named return values un-named return vals
    	//
    	// The scenarios below don't cover all possible permutations and
    	// combinations, but they hit a bunch of the high points.
    
    	const prog = `
    package main
    
    // First testcase. All input params in registers, all params used.
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top