Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 355 for combinations (0.37 sec)

  1. pkg/test/framework/resource/flags.go

    	}
    
    	if err = validate(s); err != nil {
    		return nil, err
    	}
    
    	return s, nil
    }
    
    // validate checks that user has not passed invalid flag combinations to test framework.
    func validate(s *Settings) error {
    	if s.FailOnDeprecation && s.NoCleanup {
    		return fmt.Errorf("checking for deprecation occurs at cleanup level, thus flags -istio.test.nocleanup and" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                )
                .build().output.contains("Build scan written to")
    
            where:
            [ci, pluginVersion] << [CI.values(), SUPPORTED_BY_CI_INJECTION].combinations()
            ciScriptVersion = ci.gitRef
        }
    
        private boolean doesNotBundleTestRetryPluginOrSupportsSafeMode(VersionNumber pluginVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            where:
            [taskType, condition] << [["UnspecifiedCacheabilityTask", "NotCacheableByDefault", "NotCacheableByDefaultWithReason"], ["cacheIf { true }", "cacheIf('cache-if reason') { true }"]].combinations()
        }
    
        private void assertCachingDisabledFor(@Nullable CachingDisabledReasonCategory category, @Nullable String message, @Nullable String taskPath = null) {
            operations.only(ExecuteTaskBuildOperationType, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    // various CPU architectures.
    package cpu
    
    import (
    	"os"
    	"strings"
    )
    
    // Initialized reports whether the CPU features were initialized.
    //
    // For some GOOS/GOARCH combinations initialization of the CPU features depends
    // on reading an operating specific file, e.g. /proc/self/auxv on linux/arm
    // Initialized will report false if reading the file fails.
    var Initialized bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

          )
        # Tuple of (mse_error, quant_min, quant_max).
        mse_min = (float('inf'), float('inf'), float('inf'))
    
        # Calculate the error for all hist_mid pairs.
        for left, right in itertools.combinations(range(self._num_bins), 2):
          quant_min, quant_max = self._hist_mids[left], self._hist_mids[right]
          mse_tuple = self._get_weighted_mean_squared_error(quant_min, quant_max)
          mse_min = min(mse_tuple, mse_min)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation_test.go

    		Valid bool
    	}
    
    	combinations := []ParentDrainTime{
    		{
    			Drain: &durationpb.Duration{Seconds: 1},
    			Valid: true,
    		},
    		{
    			Drain: &durationpb.Duration{Seconds: 1, Nanos: 1000000},
    			Valid: false,
    		},
    		{
    			Drain: &durationpb.Duration{Seconds: -1},
    			Valid: false,
    		},
    	}
    	for _, combo := range combinations {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. cmd/admin-handlers_test.go

    		{mgmtBucket: "bucket", mgmtPrefix: "objprefix"},
    	}
    
    	// Body is always valid - we do not test JSON decoding.
    	body := `{"recursive": false, "dryRun": true, "remove": false, "scanMode": 0}`
    
    	// Test all combinations!
    	for pIdx, params := range qParamsArr {
    		for vIdx, vars := range varsArr {
    			_, err := extractHealInitParams(vars, params, bytes.NewReader([]byte(body)))
    			isErrCase := false
    			if pIdx < 4 || vIdx < 1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            }
    
            where:
            [pathSensitivity, normalizer, ignoreEmptyDirectories, ignoreLineEndings] << [PathSensitivity.values(), [null, ClasspathNormalizer, CompileClasspathNormalizer], [true, false], [true, false]].combinations()
        }
    
        private static String customTaskCode(String input1, String input2) {
            """
                ${customTaskImpl()}
                task customTask(type: CustomTask){
                    input1 = '$input1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * </p>
     *
     * <p>Like the value, the content may also be "fixed" or "changing" and these are somewhat independent. We end up with the following combinations:</p>
     *
     * <ul>
     *     <li>a fixed missing or broken value. Because there is no value, there is also no content.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

         * or partially qualified).
         *
         * For example, `foo.Foo.bar` may only refer to the extension callable `bar` with
         * a `foo.Foo` receiver type, and this function will only look for such combinations.
         *
         * N.B. This function only searches for extension callables qualified by receiver types!
         * It does not try to resolve fully qualified or member functions, because they are dealt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top