Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for Slavin (0.34 sec)

  1. src/cmd/compile/internal/ssa/block.go

    // from its successors.  This is true if all the values within it have unreliable positions
    // and if it is "plain", meaning that there is no control flow that is also very likely
    // to correspond to a well-understood source position.
    func (b *Block) LackingPos() bool {
    	// Non-plain predecessors are If or Defer, which both (1) have two successors,
    	// which might have different line numbers and (2) correspond to statements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableCollection.java

       * type. That said, we could *accept* a `@Nullable T[]` (which, given that we treat arrays as
       * covariant, would still permit a plain `T[]`) and return a plain `T[]`. But of course that would
       * require its own suppression, since it is also unsound. toArray(T[]) is just a mess from a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                } else if (lowerPath.endsWith(".ttf")) {
                    response.setContentType("font/ttf");
                } else if (lowerPath.endsWith(".txt")) {
                    response.setContentType("text/plain");
                } else if (lowerPath.endsWith(".woff")) {
                    response.setContentType("font/woff");
                } else if (lowerPath.endsWith(".woff2")) {
                    response.setContentType("font/woff2");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/asm.go

    			// Special 3-operand jumps.
    			// 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]),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. .space/CODEOWNERS

    /plugins/kapt3/kapt3-compiler/tests-gen/ "Kotlin Compiler Core" "Kotlin JVM"
    /plugins/kapt4/ "Kotlin JVM"
    /plugins/kotlinx-serialization/ Sergey.Shanshin Leonid.Startsev
    /plugins/js-plain-objects/ Artem.Kobzar
    /libraries/tools/js-plain-objects Artem.Kobzar
    /plugins/lombok/ "Kotlin Compiler Core"
    /plugins/noarg/ "Kotlin Compiler Core"
    /plugins/parcelize/ "Kotlin Compiler Core"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * returns. This method may be useful when testing the garbage collection mechanism itself, or
       * inhibiting a spontaneous GC initiation in subsequent code.
       *
       * <p>In contrast, a plain call to {@link java.lang.System#gc()} does not ensure finalization
       * processing and may run concurrently, for example, if the JVM flag {@code
       * -XX:+ExplicitGCInvokesConcurrent} is used.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/cmd/dist/buildtool.go

    		} else {
    			for _, dir := range bootstrapDirs {
    				if path == dir {
    					path = "bootstrap/" + dir
    					break
    				}
    			}
    		}
    
    		// Rewrite use of internal/reflectlite to be plain reflect.
    		if path == "internal/reflectlite" {
    			lines[i] = strings.ReplaceAll(line, `"reflect"`, `reflectlite "reflect"`)
    			continue
    		}
    
    		// Otherwise, reject direct imports of internal packages,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    crawler.document.file.default.exclude.search.patterns=
    
    # cache
    crawler.document.cache.enabled=true
    crawler.document.cache.max.size=2621440
    crawler.document.cache.supported.mimetypes=text/html
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       * returns. This method may be useful when testing the garbage collection mechanism itself, or
       * inhibiting a spontaneous GC initiation in subsequent code.
       *
       * <p>In contrast, a plain call to {@link java.lang.System#gc()} does not ensure finalization
       * processing and may run concurrently, for example, if the JVM flag {@code
       * -XX:+ExplicitGCInvokesConcurrent} is used.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

         * it can be used with collections that may contain null. This collection is a collection of
         * non-null elements, so we can treat it as a plain `Object[]`.
         */
        @SuppressWarnings("nullness")
        Object[] result = ObjectArrays.toArrayImpl(this);
        return result;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top