Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 209 for IsString (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

        def setup() {
            buildFile << """
    class TextTask extends DefaultTask {
        @Nested
        TextResource text
    
        @TaskAction
        def go() {
            println text.asString()
        }
    }
    
    task text(type: TextTask)
    """
        }
    
        def "reports read of missing text file"() {
            given:
            buildFile << """
                text.text = resources.text.fromFile('no-such-file')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         * @return a new filtered graph
         */
        @Nonnull
        Node filter(@Nonnull Predicate<Node> filter);
    
        /**
         * Returns a string representation of this dependency node.
         *
         * @return the string representation
         */
        @Nonnull
        String asString();
    
        /**
         * Obtain a Stream containing this node and all its descendant.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelResolver.java

     */
    @Named
    @Singleton
    public class DefaultModelResolver implements ModelResolver {
    
        @Override
        public ModelSource resolveModel(
                Session session, String groupId, String artifactId, String version, Consumer<String> resolvedVersion)
                throws ModelResolverException {
            try {
                ArtifactCoordinate coord = session.createArtifactCoordinate(groupId, artifactId, version, "pom");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    func uuidgen() {
    	var uuid C.cgo_uuid_t
    	C.uuid_generate(&uuid[0])
    }
    
    func Strtol(s string, base int) (int, error) {
    	p := C.CString(s)
    	n, err := C.strtol(p, nil, C.int(base))
    	C.free(unsafe.Pointer(p))
    	return int(n), err
    }
    
    func Atol(s string) int {
    	p := C.CString(s)
    	n := C.atol(p)
    	C.free(unsafe.Pointer(p))
    	return int(n)
    }
    
    func testConst(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. tensorflow/c/tf_buffer.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/tf_buffer.h"
    
    #include <cstddef>
    #include <cstdint>
    #include <cstring>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mem.h"
    #include "tensorflow/core/platform/protobuf.h"  // IWYU pragma: keep
    #include "tensorflow/core/platform/status.h"
    
    extern "C" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/syscall/js/js.go

    func (v Value) String() string {
    	switch v.Type() {
    	case TypeString:
    		return jsString(v)
    	case TypeUndefined:
    		return "<undefined>"
    	case TypeNull:
    		return "<null>"
    	case TypeBoolean:
    		return "<boolean: " + jsString(v) + ">"
    	case TypeNumber:
    		return "<number: " + jsString(v) + ">"
    	case TypeSymbol:
    		return "<symbol>"
    	case TypeObject:
    		return "<object>"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/ReqHeaderTests.java

        private static final String NAME_PREFIX = "reqHeaderTest_";
        private static final String API_PATH = "/api/admin/reqheader";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // Caller will take ownership of buffer.
      *buffer = reinterpret_cast<char*>(malloc(bytes));
    
      if (*buffer == nullptr) {
        return -1;
      }
    
      // Set num of string
      //
      // NOTE: The string buffer is accessed here as if it's native endian (instead
      // of small endian, as documented in the header). This will protentially break
      // when TFLite is ported to big endian platforms.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/GroupTests.java

        private static final String NAME_PREFIX = "groupTest_";
        private static final String API_PATH = "/api/admin/group";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java

        private static final String NAME_PREFIX = "webAuthTest_";
        private static final String API_PATH = "/api/admin/webauth";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "username";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top