Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for rfind (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/work/exec.go

    			idx := bytes.Index(src, []byte(cgoLdflag))
    			for idx >= 0 {
    				// We are looking at //go:cgo_ldflag.
    				// Find start of line.
    				start := bytes.LastIndex(src[:idx], []byte("\n"))
    				if start == -1 {
    					start = 0
    				}
    
    				// Find end of line.
    				end := bytes.Index(src[idx:], []byte("\n"))
    				if end == -1 {
    					end = len(src)
    				} else {
    					end += idx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    		case objabi.R_SIZE:
    			o = ldr.SymSize(rs) + r.Add()
    
    		case objabi.R_XCOFFREF:
    			if !target.IsAIX() {
    				st.err.Errorf(s, "find XCOFF R_REF on non-XCOFF files")
    			}
    			if !target.IsExternal() {
    				st.err.Errorf(s, "find XCOFF R_REF with internal linking")
    			}
    			nExtReloc++
    			continue
    
    		case objabi.R_DWARFFILEREF:
    			// We don't renumber files in dwarf.go:writelines anymore.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    		}
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Fatalf("timeout after %v", wait.ForeverTestTimeout)
    	}
    }
    
    func TestSchedulerWithVolumeBinding(t *testing.T) {
    	findErr := fmt.Errorf("find err")
    	assumeErr := fmt.Errorf("assume err")
    	bindErr := fmt.Errorf("bind err")
    	client := clientsetfake.NewSimpleClientset()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top