Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,348 for logical (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

    namespace mlir {
    namespace quant {
    namespace {
    constexpr StringRef kDequantizeFunctionName = "composite_dequantize";
    constexpr StringRef kUniformQuantizationFunctionName = "uniform";
    
    // Pre-actions before adding quantization logics. It creates a function with the
    // func_name where input_val is an input and result_type is a result.
    func::FuncOp PrepareFunctionRegister(PatternRewriter& rewriter, Value input_val,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    They also serve as the primary mechanism for organizing build logic.
    
    == Benefits of plugins
    
    Writing many tasks and duplicating configuration blocks in build scripts can get messy.
    Plugins offer several advantages over adding logic directly to the build script:
    
    - *Promotes Reusability*: Reduces the need to duplicate similar logic across projects.
    - *Enhances Modularity*: Allows for a more modular and organized build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            when: "running with an empty file"
            file("local.properties") << ""
            configurationCacheRun "run"
    
            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateLoaded()
    
            when: "running with the property present in the file"
            file("local.properties") << "ci=true"
            configurationCacheRun "run"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

    import org.gradle.internal.component.local.model.DefaultLocalConfigurationMetadata;
    import org.gradle.internal.component.local.model.LocalComponentArtifactMetadata;
    import org.gradle.internal.component.local.model.LocalConfigurationGraphResolveMetadata;
    import org.gradle.internal.component.local.model.LocalConfigurationMetadata;
    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. pilot/pkg/xds/xds_test.go

    			},
    		},
    	}
    
    	for name, tt := range tests {
    		t.Run(name, func(t *testing.T) {
    			for _, local := range []bool{true, false} {
    				name := "cluster-local"
    				want := tt.wantClusterLocal
    				if !local {
    					name = "non-cluster-local"
    					want = tt.wantNonClusterLocal
    				}
    				t.Run(name, func(t *testing.T) {
    					meshConfig := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/start.go

    	mode, _ := telemetry.Default.Mode()
    	if mode == "off" {
    		// Telemetry is turned off. Crash reporting doesn't work without telemetry
    		// at least set to "local". The upload process runs in both "on" and "local" modes.
    		// In local mode the upload process builds local reports but does not do the upload.
    		return result
    	}
    
    	counter.Open()
    
    	if _, err := os.Stat(telemetry.Default.LocalDir()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/net/http/httputil/persist.go

    	}
    	return nil
    }
    
    // Write writes a request. An [ErrPersistEOF] error is returned if the connection
    // has been closed in an HTTP keep-alive sense. If req.Close equals true, the
    // keep-alive connection is logically closed after this request and the opposing
    // server is informed. An ErrUnexpectedEOF indicates the remote closed the
    // underlying TCP connection, which is usually considered as graceful close.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. maven-core/plugin-manager.txt

    of a plugin whether that be from a workspace of an IDE, a local Maven repository, or a remote Maven repository. During development in an IDE we would need layered resolution approach that would allow resolution from the workspace, then the local Maven repository and then from any number of remote Maven repositories. During development from the command line we would need a layered resolution approach that would allow resolution from the local Maven repository and then from any number of remote Maven...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  9. hack/lib/util.sh

    kube::util::array_contains() {
      local search="$1"
      local element
      shift
      for element; do
        if [[ "${element}" == "${search}" ]]; then
          return 0
         fi
      done
      return 1
    }
    
    kube::util::wait_for_url() {
      local url=$1
      local prefix=${2:-}
      local wait=${3:-1}
      local times=${4:-30}
      local maxtime=${5:-1}
    
      command -v curl >/dev/null || {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. cluster/log-dump/log-dump.sh

    # This function shouldn't ever trigger errexit
    function save-logs() {
        local -r node_name="${1}"
        local -r dir="${2}"
        local files=()
        IFS=' ' read -r -a files <<< "$3"
        local opt_systemd_services="${4:-""}"
        local on_master="${5:-"false"}"
    
        local extra=()
        IFS=' ' read -r -a extra <<< "$extra_log_files"
        files+=("${extra[@]}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top