Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 826 for pselect (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfiguration.java

                artifactsForThisConfiguration = artifactResults.select(artifactVariantSelector, implicitSelectionSpec, true);
            }
            return artifactsForThisConfiguration;
        }
    
        @Override
        public SelectedArtifactSet select(final Spec<? super Dependency> dependencySpec) {
            SelectedArtifactResults artifactResults = this.artifactResults.select(artifactVariantSelector, implicitSelectionSpec, false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

            "@com_google_absl//absl/status",
        ],
    )
    
    pybind_extension(
        name = "_pywrap_tac_wrapper",
        srcs = [
            "tac_wrapper_pybind11.cc",
        ],
        hdrs = ["tac_wrapper.h"],
        dynamic_deps = select({
            "//tensorflow:macos": ["//tensorflow:libtensorflow_framework.%s.dylib" % VERSION],
            "//tensorflow:windows": [],
            "//conditions:default": ["//tensorflow:libtensorflow_framework.so.%s" % VERSION],
        }),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. istioctl/pkg/wait/wait.go

    					_, _ = fmt.Fprintf(cmd.OutOrStdout(), "Resource %s present on %d out of %d configurations across %d sidecars\n",
    						targetResource, present, present+notpresent, sdcnum)
    					return nil
    				}
    				select {
    				case newVersion := <-w.resultsChan:
    					printVerbosef(cmd, "received new target version: %s", newVersion)
    					generations = append(generations, newVersion)
    				case <-t.C:
    					printVerbosef(cmd, "tick")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %9 = mhlo.compare  LT, %8, %6 : (tensor<32x32xi64>, tensor<32x32xi64>) -> tensor<32x32xi1>
      %10 = mhlo.add %8, %4 : tensor<32x32xi64>
      %11 = mhlo.select %9, %10, %8 : tensor<32x32xi1>, tensor<32x32xi64>
      %12 = mhlo.reshape %11 : (tensor<32x32xi64>) -> tensor<32x32x1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    		"If enabled, service entries with selectors will select pods from the cluster. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    		"If enabled, Kubernetes services with selectors will select workload entries with matching labels. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pkg/kube/krt/sync.go

    	name   string
    	synced <-chan struct{}
    }
    
    func (c channelSyncer) WaitUntilSynced(stop <-chan struct{}) bool {
    	return waitForCacheSync(c.name, stop, c.synced)
    }
    
    func (c channelSyncer) HasSynced() bool {
    	select {
    	case <-c.synced:
    		return true
    	default:
    		return false
    	}
    }
    
    type pollSyncer struct {
    	name string
    	f    func() bool
    }
    
    func (c pollSyncer) WaitUntilSynced(stop <-chan struct{}) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 14:25:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      specs.upgrade_legacy = upgrade_legacy;
      specs.prune_unused_nodes = true;
    
      if (!select_user_tf_ops.empty() && !emit_select_tf_ops) {
        llvm::errs() << "You must specify `emit-select-tf-ops=true` when passing "
                        "`select-user-tf-ops` flag.";
        return kTrFailure;
      }
    
      std::unique_ptr<tensorflow::SavedModelBundle> bundle;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

        deps = [":gcs_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "gcs_filesystem_impl",
        srcs = ["gcs_filesystem.cc"],
        hdrs = ["gcs_filesystem.h"],
        copts = select({
            "//conditions:default": [],
            "//tensorflow:windows": get_win_copts(),
        }),
        deps = [
            ":expiring_lru_cache",
            ":gcs_helper",
            ":ram_file_block_cache",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pkg/util/filesystem/watcher.go

    	if err != nil {
    		return err
    	}
    
    	w.eventHandler = eventHandler
    	w.errorHandler = errorHandler
    	return nil
    }
    
    func (w *fsnotifyWatcher) Run() {
    	go func() {
    		defer w.watcher.Close()
    		for {
    			select {
    			case event := <-w.watcher.Events:
    				if w.eventHandler != nil {
    					w.eventHandler(event)
    				}
    			case err := <-w.watcher.Errors:
    				if w.errorHandler != nil {
    					w.errorHandler(err)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

        });
    
        $('.section-sign').click(function () {
            var $temp = $("<input>");
            $("body").append($temp);
            $temp.val(window.location.href.split('#')[0] + $(this).attr('href')).select();
            document.execCommand("copy");
            $temp.remove();
        });
    }
    
    function refreshCards(selectedTags) {
        $('.card').each(function (index, row) {
            var currentTags = $(row).attr('tag');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top