Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 6,867 for Option (0.11 sec)

  1. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOption.java

     */
    
    package org.gradle.internal.buildoption;
    
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    
    import java.util.Map;
    
    /**
     * A build option representing a boolean option with a enabled mode only e.g. {@code "--foreground"}.
     *
     * @since 4.3
     */
    public abstract class EnabledOnlyBooleanBuildOption<T> extends AbstractBuildOption<T, CommandLineOptionConfiguration> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/config/model_test.go

    	}
    }
    
    type TestStruct struct {
    	Name string `json:"name"`
    }
    
    func TestDeepCopyTypes(t *testing.T) {
    	cases := []struct {
    		input  Spec
    		modify func(c Spec) Spec
    		option cmp.Option
    	}{
    		// Istio type
    		{
    			&networking.VirtualService{Gateways: []string{"foo"}},
    			func(c Spec) Spec {
    				c.(*networking.VirtualService).Gateways = []string{"bar"}
    				return c
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderOptions.java

         */
        public static boolean shouldRealizeTasks() {
            // This property was initially added in Gradle 6.1 to allow Android Studio troubleshoot sync performance issues.
            // As Android Studio wanted to avoid task realization during sync, it started using "omit_all_tasks" option in production.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:25:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

        // Activation: qi8, Weight: qi8, Bias: qi32
        POST_TRAINING_QUANTIZATION_STATIC_RANGE = 4;
      }
      PresetMethod preset_method = 1;
    }
    
    // Custom option for specifying quantization spec details.
    // If the selected quantization option is not available, StableHLO quantizer
    // will raise an error.
    // NEXT ID: 2
    message CustomQuantizationMethod {
      // Specify component name, bit width, and other specs for all compoenents
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/finalizersWithFailure/tests-kotlin/taskFinalizersWithFailureKotlin.out

    taskY
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':taskX'.
    > java.lang.RuntimeException (no error message)
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 385 bytes
    - Viewed (0)
  6. test/typeparam/issue52026.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func returnOption[T any](n int) Option[T] {
    	if n == 1 {
    		return Some[T]{}
    	} else {
    		return None{}
    	}
    }
    
    type Option[T any] interface {
    	sealedOption()
    }
    
    type Some[T any] struct {
    	val T
    }
    
    func (s Some[T]) Value() T {
    	return s.val
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 21:36:22 UTC 2022
    - 735 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/fail.out

    > Invocation of 'Task.project' by task ':someTask' at execution time is unsupported.
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    BUILD FAILED in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 845 bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		return []demangle.Option{demangle.NoParams, demangle.NoEnclosingParams}
    	case "full":
    		return []demangle.Option{demangle.NoClones}
    	case "none": // no demangling
    		return []demangle.Option{}
    	}
    
    	panic(fmt.Sprintf("unknown demanglerMode %s", demanglerMode))
    }
    
    func demangleSingleFunction(fn *profile.Function, options []demangle.Option) {
    	if fn.Name != "" && fn.SystemName != fn.Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. cmd/warm-backend-gcs.go

    	}
    
    	clnt := &http.Client{
    		Transport: globalRemoteTargetTransport,
    	}
    
    	client, err := storage.NewClient(context.Background(),
    		option.WithCredentialsJSON(credsJSON),
    		option.WithScopes(storage.ScopeReadWrite),
    		option.WithHTTPClient(clnt),
    		option.WithUserAgent(fmt.Sprintf("gcs-tier-%s", tier)+SlashSeparator+ReleaseTag),
    	)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccOptionsFileArgsWriter.java

    import java.io.File;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    /**
     * Uses an option file for arguments passed to GCC if possible.
     * Certain GCC options do not function correctly when included in an option file, so include these directly on the command line as well.
     */
    class GccOptionsFileArgsWriter extends OptionsFileArgsWriter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top