Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for Option (0.1 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    is FirAbstractSimpleImportingScope -> EXPLICIT
                    else -> LOCAL
                }
            }
    
            fun fromShortenOption(option: ShortenStrategy): ImportKind? = when (option) {
                ShortenStrategy.SHORTEN_AND_IMPORT -> EXPLICIT
                ShortenStrategy.SHORTEN_AND_STAR_IMPORT -> STAR
                else -> null
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    		waitingPods:          options.waitingPods,
    		clientSet:            options.clientSet,
    		kubeConfig:           options.kubeConfig,
    		eventRecorder:        options.eventRecorder,
    		informerFactory:      options.informerFactory,
    		metricsRecorder:      options.metricsRecorder,
    		extenders:            options.extenders,
    		PodNominator:         options.podNominator,
    		parallelizer:         options.parallelizer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    	return Option(pow << maxLengthShift)
    }
    
    // isMaxLength reports whether an Option holds a maximum length.
    func isMaxLength(opt Option) bool {
    	return opt&maxLengthMask != 0
    }
    
    // maxLength returns the maximum length stored in an Option.
    func maxLength(opt Option) int {
    	return 1 << ((opt & maxLengthMask) >> maxLengthShift)
    }
    
    // Filter demangles a C++ or Rust symbol name,
    // returning the human-readable C++ or Rust name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. .teamcity/test-buckets.json

    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"language-java",
    					"build-cache-base",
    					"normalization-java",
    					"docs",
    					"build-option",
    					"toolchains-jvm",
    					"resources-http",
    					"execution",
    					"resources",
    					"internal-performance-testing",
    					"wrapper-shared"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    func NewPriorityQueue(
    	lessFn framework.LessFunc,
    	informerFactory informers.SharedInformerFactory,
    	opts ...Option,
    ) *PriorityQueue {
    	options := defaultPriorityQueueOptions
    	if options.podLister == nil {
    		options.podLister = informerFactory.Core().V1().Pods().Lister()
    	}
    	for _, opt := range opts {
    		opt(&options)
    	}
    
    	comp := func(podInfo1, podInfo2 interface{}) bool {
    		pInfo1 := podInfo1.(*framework.QueuedPodInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. .bazelrc

    # This file tries to group and simplify build options for TensorFlow
    #
    # ----CONFIG OPTIONS----
    # Android options:
    #    android:
    #    android_arm:
    #    android_arm64:
    #    android_x86:
    #    android_x86_64:
    #
    # iOS options:
    #     ios:
    #     ios_armv7:
    #     ios_arm64:
    #     ios_x86_64:
    #     ios_fat:
    #
    # Macosx options
    #     darwin_arm64:
    #
    # Compiler options:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      if [[ -z "${apiserver_path}" ]]; then
        return
      fi
      echo -n "$(dirname "${apiserver_path}")"
    }
    
    ### Allow user to supply the source directory.
    GO_OUT=${GO_OUT:-}
    while getopts "ho:O" OPTION
    do
        case ${OPTION} in
            o)
                echo "skipping build"
                GO_OUT="${OPTARG}"
                echo "using source ${GO_OUT}"
                ;;
            O)
                GO_OUT=$(guess_built_binary_path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Controls whether the WebhookConfiguration resource(s) should be created. The current behavior
      // of Istiod is to manage its own webhook configurations.
      // When this option is set to true, Istio Operator, instead of webhooks, manages the
      // webhook configurations. When this option is set as false, webhooks manage their
      // own webhook configurations.
      google.protobuf.BoolValue operatorManageWebhooks = 41;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      bool enable_legacy_weight_only_;
      int min_num_elements_for_weights_;
      std::optional<std::string> mlir_dump_file_name_;
    
      // These flags are only used for testing purpose.
      Option<QuantMethod> quantization_method_{
          *this, "quantization-method",
          llvm::cl::init(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	}
    	// Same if we set the option explicitly to the default.
    	tmpl.Option("missingkey=default")
    	b.Reset()
    	err = tmpl.Execute(&b, data)
    	if err != nil {
    		t.Fatal("default:", err)
    	}
    	want = "99 <no value>"
    	got = b.String()
    	if got != want {
    		t.Errorf("got %q; expected %q", got, want)
    	}
    	// Next we ask for a zero value
    	tmpl.Option("missingkey=zero")
    	b.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top