Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 659 for coerce (0.07 seconds)

  1. internal/s3select/jstream/decoder.go

    		switch {
    		case c == '"':
    			return string(d.scratch.bytes()), nil
    		case c == '\\':
    			c = d.next()
    			goto scan_esc
    		case c < 0x20:
    			return "", d.mkError(ErrSyntax, "in string literal")
    		// Coerce to well-formed UTF-8.
    		default:
    			d.scratch.add(c)
    			if d.remaining() == 0 {
    				return "", d.mkError(ErrSyntax, "in string literal")
    			}
    			c = d.next()
    		}
    	}
    
    scan_esc:
    	switch c {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 13.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

            }
          }
          return true;
        }
        return false;
      }
    
      /**
       * Coerces an IPv6 address into an IPv4 address.
       *
       * <p>HACK: As long as applications continue to use IPv4 addresses for indexing into tables,
       * accounting, et cetera, it may be necessary to <b>coerce</b> IPv6 addresses into IPv4 addresses.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 47.7K bytes
    - Click Count (0)
  3. CONTRIBUTING.md

    or cast of any kind, because it lacks the information to know that the types are
    OK. In such cases, you can use
    the [`Types.forciblyCast`](libs/core/src/main/java/org/elasticsearch/core/Types.java)
    utility method. As the name suggests, you can coerce any type to any other type,
    so please use it as a last resort.
    
    ### Creating A Distribution
    
    Run all build commands from within the root directory:
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 07:32:01 GMT 2021
    - 36.5K bytes
    - Click Count (0)
  4. src/cmd/asm/internal/asm/asm.go

    			// a[1] is a register number expressed as a constant or register value
    			target = &a[2]
    			prog.From = a[0]
    			if a[0].Type != obj.TYPE_CONST {
    				// Legacy code may use a plain constant, accept it, and coerce
    				// into a constant. E.g:
    				//   BC 4,...
    				// into
    				//   BC $4,...
    				prog.From = obj.Addr{
    					Type:   obj.TYPE_CONST,
    					Offset: p.getConstant(prog, op, &a[0]),
    				}
    
    			}
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 17:02:17 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  5. docs/en/docs/img/sponsors/ines-course.jpg

    ines-course.jpg...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Apr 17 21:00:49 GMT 2022
    - 11.5K bytes
    - Click Count (0)
  6. docs/en/docs/img/sponsors/fastapi-course-bundle-banner.png

    fastapi-course-bundle-banner.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Apr 17 21:00:49 GMT 2022
    - 15.9K bytes
    - Click Count (0)
  7. docs/en/docs/img/sponsors/fastapi-course-bundle-banner.svg

    fastapi-course-bundle-banner.svg...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Jun 07 08:52:44 GMT 2021
    - 34.2K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

     */
    package org.codelibs.core.beans.util;
    
    import static org.codelibs.core.collection.CollectionsUtil.newLinkedHashMap;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.function.Consumer;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.PropertyDesc;
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 23.5K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy

            }
        }
    
        static Source matchSource(String line) {
            def matcher = line =~ /\["?source"?,\s*"?([-\w]+)"?(,((?!id=).)*(id="?([-\w]+)"?)?(.*))?].*/
            if(matcher.matches()){
                return new Source(matches: true, language: matcher.group(1),  name: matcher.group(5))
            }
            return new Source(matches: false)
        }
    
        static class Source {
            boolean matches
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 10:08:26 GMT 2021
    - 17.8K bytes
    - Click Count (0)
  10. okhttp/build.gradle.kts

      // Always compile kotlin classes before the module descriptor.
      dependsOn(compileKotlinTask)
    
      // Add the module-info source file.
      source(sourceDir)
    
      // Also add the module-info.java source file to the Kotlin compile task.
      // The Kotlin compiler will parse and check module dependencies,
      // but it currently won't compile to a module-info.class file.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 11.4K bytes
    - Click Count (0)
Back to Top