Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for rfind (0.18 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          if (curr.is_exiting) {
            if (node_map.find(curr.n) == node_map.end()) {
              Node* copy = g->CopyNode(curr.n);
              if (curr.n != start_node) {
                for (const Edge* e : curr.n->in_edges()) {
                  auto node_iter = node_map.find(e->src());
                  if (node_iter == node_map.end()) {
                    return errors::Internal("Cannot find node image for ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        auto remapped_it = remapped_feeds_.find(tensor);
        if (remapped_it != remapped_feeds_.end()) {
          TF_RETURN_IF_ERROR(add_node(remapped_it->second));
        } else {
          TF_RETURN_IF_ERROR(add_node(tensor.node()));
        }
      }
    
      for (const auto& output : specs_.outputs) {
        TensorId tensor = ParseTensorName(output);
        auto remapped_it = remapped_feeds_.find(tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:1.0 FAILED
       Failures:
          - Could not find org:leaf:1.0.
            Searched in the following locations:
              - ${leafModule.ivyFile.displayUri}
            ${repositoryHint("ivy.xml")}
    
    org:leaf:1.0 FAILED
    \\--- org:top:1.0
         \\--- conf
    
    org:leaf:1.6+ FAILED
       Failures:
          - Could not find any matches for org:leaf:1.6+ as no versions of org:leaf are available.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"str": "this is a 123 string 456",
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"str": stringType,
    			}),
    			valid: []string{
    				"self.str.find('[0-9]+') == '123'",
    				"self.str.find('[0-9]+') != '456'",
    				"self.str.find('xyz') == ''",
    
    				"self.str.findAll('[0-9]+') == ['123', '456']",
    				"self.str.findAll('[0-9]+', 0) == []",
    				"self.str.findAll('[0-9]+', 1) == ['123']",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers_test.go

    			if hardContainerFsMatch == -1 {
    				t.Fatalf("did not find hard containerfs.available")
    			}
    			if softContainerFsMatch == -1 {
    				t.Fatalf("did not find soft containerfs.available")
    			}
    			if hardContainerFsINodesMatch == -1 {
    				t.Fatalf("did not find hard containerfs.inodesfree")
    			}
    			if softContainerFsINodesMatch == -1 {
    				t.Fatalf("did not find soft containerfs.inodesfree")
    			}
    		})
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    
    	if blockVolumePlugin == nil {
    		return volumetypes.GeneratedOperations{}, volumeToMount.GenerateErrorDetailed("MapVolume.FindMapperPluginBySpec failed to find BlockVolumeMapper plugin. Volume plugin is nil.", nil)
    	}
    
    	affinityErr := checkNodeAffinity(og, volumeToMount)
    	if affinityErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      actual_device="$2"
    
      # Trigger udev refresh so that newly formatted devices are propagated in by-uuid
      udevadm control --reload-rules
      udevadm trigger
      udevadm settle
    
      # find uuid for actual_device
      local myuuid
      myuuid=$(find -L /dev/disk/by-uuid -maxdepth 1 -samefile /dev/"${actual_device}" -printf '%P')
      # myuuid should be the uuid of the device as found in /dev/disk/by-uuid/
      if [[ -z "${myuuid}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=4.0"
          }
        },
        "node_modules/eslint/node_modules/find-up": {
          "version": "5.0.0",
          "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
          "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
          "dev": true,
          "dependencies": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      for cmd in gcloud gsutil; do
        if ! which "${cmd}" >/dev/null; then
          echo "Can't find ${cmd} in PATH, please fix and retry. The Google Cloud " >&2
          echo "SDK can be downloaded from https://cloud.google.com/sdk/." >&2
          exit 1
        fi
      done
      update-or-verify-gcloud
    }
    
    # Use the gcloud defaults to find the project.  If it is already set in the
    # environment then go with that.
    #
    # Vars set:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		t.Errorf("Can't find taint %v in %v", originalTaint, node0.Spec.Taints)
    	}
    	node2, err := fakeNodeHandler.Get(ctx, "node2", metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Can't get current node2...")
    		return
    	}
    	if !taintutils.TaintExists(node2.Spec.Taints, NotReadyTaintTemplate) {
    		t.Errorf("Can't find taint %v in %v", NotReadyTaintTemplate, node2.Spec.Taints)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top