Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for IsSubstring (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

                                              const wchar_t* s2);
    
    }  // namespace internal
    
    // IsSubstring() and IsNotSubstring() are intended to be used as the
    // first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by
    // themselves.  They check whether needle is a substring of haystack
    // (NULL is considered a substring of itself only), and return an
    // appropriate error message when they fail.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

                                              const wchar_t* s2);
    
    }  // namespace internal
    
    // IsSubstring() and IsNotSubstring() are intended to be used as the
    // first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by
    // themselves.  They check whether needle is a substring of haystack
    // (NULL is considered a substring of itself only), and return an
    // appropriate error message when they fail.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    			unmap_8_64(text, sa, numLMS)
    		} else {
    			// If maxID == numLMS, then each LMS-substring
    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

            if (equalsOffset == -1 || equalsOffset > ampersandOffset) {
              result.add(substring(pos, ampersandOffset))
              result.add(null) // No value for this name.
            } else {
              result.add(substring(pos, equalsOffset))
              result.add(substring(equalsOffset + 1, ampersandOffset))
            }
            pos = ampersandOffset + 1
          }
          return result
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                            active = false;
                            selector = selector.substring(1);
                        } else if (token.charAt(0) == '+') {
                            selector = selector.substring(1);
                        }
    
                        boolean optional = selector.charAt(0) == '?';
                        selector = selector.substring(optional ? 1 : 0);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        return null;
                    }
    
                    String leftOp = condition.substring(0, equalIndex).trim();
                    String rightOp = condition.substring(equalIndex + 1).trim();
    
                    // allow organisation synonyms, like 'org' or 'organization'
                    if (leftOp.equals("org") || leftOp.equals("organization")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.set(iterable)
            property.get() == toImmutable(["4", "5"])
        }
    
        def "can set string property from collection containing GString"() {
            expect:
            property.set(["${'321'.substring(2)}"])
            assertValueIs(["1"])
        }
    
        def "can set untyped from various collection types"() {
            def iterable = Stub(Iterable)
            iterable.iterator() >> ["4", "5"].iterator()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            String saved = name;
            while (true) {
                int len = name.lastIndexOf('.');
                if (len == -1) {
                    break;
                }
                name = name.substring(0, len) + "$" + name.substring(len + 1);
                type.setName(name);
                if (resolve(type)) {
                    return true;
                }
            }
            if (resolveToNestedOfCurrent(type)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def _any_log_contains(
          self, substring: str, log_record_list: List['logging.LogRecord']
      ) -> bool:
        """Returns True if any of the log contains a given substring.
    
        Args:
          substring: A piece of string to check whether it exists in the log
            message.
          log_record_list: A list of `absl.logging.LogRecord`s.
    
        Returns:
          True if and only if the substring exists in any of the log in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.split(' ') == ['Rook', 'takes', '👑']":   6,
    				"self.val1.split(' ', 2) == ['Rook', 'takes 👑']":   6,
    				"self.val1.substring(5) == 'takes 👑'":              5,
    				"self.val1.substring(0, 4) == 'Rook'":              5,
    				"self.val1.substring(4, 10).trim() == 'takes'":     6,
    				"self.val1.upperAscii() == 'ROOK TAKES 👑'":         6,
    				"self.val1.lowerAscii() == 'rook takes 👑'":         6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
Back to top