Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for SubPtr (0.24 sec)

  1. src/go/types/check_test.go

    			errList = filemap[line]
    		}
    
    		// At least one of the errors in errList should match the current error.
    		indices = indices[:0]
    		for i, want := range errList {
    			pattern, substr := strings.CutPrefix(want.text, " ERROR ")
    			if !substr {
    				var found bool
    				pattern, found = strings.CutPrefix(want.text, " ERRORx ")
    				if !found {
    					panic("unreachable")
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    	if err == nil {
    		t.Fatalf("X509KeyPair didn't return an error when arguments were switched")
    	}
    	if subStr := "been switched"; !strings.Contains(err.Error(), subStr) {
    		t.Fatalf("Expected %q in the error when switching arguments to X509KeyPair, but the error was %q", subStr, err)
    	}
    
    	_, err = X509KeyPair([]byte(rsaCertPEM), []byte(rsaCertPEM))
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/metrics.cc

            "Invalid path_and_singleprint argument. Found no delimeter.");
      }
      std::string path = path_and_singleprint.substr(0, delimiter);
      if (path.empty()) {
        return absl::InvalidArgumentError(
            "Invalid path_and_singleprint argument. Empty path.");
      }
      std::string singleprint = path_and_singleprint.substr(delimiter + 1);
      if (singleprint.empty()) {
        return absl::InvalidArgumentError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

        // Op type is a NameLoc with the ":" suffix.
        StringRef op_type_with_suffix =
            mlir::cast<NameLoc>(locations.front()).getName().strref();
        StringRef op_type =
            op_type_with_suffix.substr(0, op_type_with_suffix.size() - 1);
        new_unit.set_op_type(op_type.str());
    
        if (isa<NameLoc>(locations.back())) {
          StringRef name_loc_id =
              mlir::cast<NameLoc>(locations.back()).getName().strref();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/strings/strings_test.go

    }
    
    func TestContains(t *testing.T) {
    	for _, ct := range ContainsTests {
    		if Contains(ct.str, ct.substr) != ct.expected {
    			t.Errorf("Contains(%s, %s) = %v, want %v",
    				ct.str, ct.substr, !ct.expected, ct.expected)
    		}
    	}
    }
    
    var ContainsAnyTests = []struct {
    	str, substr string
    	expected    bool
    }{
    	{"", "", false},
    	{"", "a", false},
    	{"", "abc", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/converter_gen.cc

        // Emit a loop to check all operands.
        os << formatv("    for (Value v : top.getODS{0}{1}s({2})) {{\n",
                      // Capitalize the first letter to match the function name
                      valueKind.substr(0, 1).upper(), valueKind.substr(1),
                      static_value.index());
    
        os << "      (void)v;\n"
           << "      if (!("
           << tgfmt(pred.getCondition(), &fctx.withSelf("v.getType()")) << ")) {\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        if (!op.getCustomCode().starts_with(kFlexOpNamePrefix)) {
          return failure();
        }
    
        llvm::StringRef tf_op_name =
            op.getCustomCode().substr(kFlexOpNamePrefix.size());
        const std::string tf_op_full_name = llvm::Twine("tf.", tf_op_name).str();
    
        // Create the TF op
        OperationState op_state(op.getLoc(), tf_op_full_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        TF_SetStatus(status, TF_INVALID_ARGUMENT,
                     "GCS path doesn't contain a bucket name.");
        return;
      }
    
      *bucket = fname.substr(scheme_end + 1, bucket_end - scheme_end - 1);
      *object = fname.substr(bucket_end + 1);
    
      if (object->empty() && !object_empty_ok) {
        TF_SetStatus(status, TF_INVALID_ARGUMENT,
                     "GCS path doesn't contain an object name.");
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  9. pkg/volume/emptydir/empty_dir_test.go

    		})
    	}
    }
    
    func TestTmpfsMountOptions(t *testing.T) {
    	subQuantity := resource.MustParse("123Ki")
    
    	doesStringArrayContainSubstring := func(strSlice []string, substr string) bool {
    		for _, s := range strSlice {
    			if strings.Contains(s, substr) {
    				return true
    			}
    		}
    		return false
    	}
    
    	testCases := map[string]struct {
    		tmpfsNoswapSupported bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/mmu.go

          function mmuFlags() {
            var flags = "";
            $("#options input").each(function(i, elt) {
              if (elt.checked)
                flags += "|" + elt.id;
            });
            return flags.substr(1);
          }
    
          function refreshChart() {
            if (!chartsReady) return;
            var container = $('#mmu_chart');
            container.css('opacity', '.5');
            refreshChart.count++;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top