Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Hencke (0.32 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

     * imports, the symbol from "smaller" kind is used. For example, an explicitly imported symbol can overwrite a star-imported symbol.
     */
    private enum class ImportKind {
        /** The symbol is available from the local scope and hence cannot be imported or overwritten. */
        LOCAL,
    
        /** Explicitly imported by user. */
        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            return callExpression
        }
    
        /**
         * For `=` and compound access like `+=`, `-=`, `*=`, `/=`, `%=`, the LHS of the binary expression is not a complete call. Hence we
         * find the containing binary expression and resolve that instead.
         *
         * However, if, say, `+=` resolves to `plusAssign`, then the LHS is self-contained. In this case we do not return the containing binary
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns a {@code PeekingIterator} backed by the given iterator.
       *
       * <p>Calls to the {@code peek} method with no intervening calls to {@code next} do not affect the
       * iteration, and hence return the same object each time. A subsequent call to {@code next} is
       * guaranteed to return the same object again. For example:
       *
       * <pre>{@code
       * PeekingIterator<String> peekingIterator =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns a {@code PeekingIterator} backed by the given iterator.
       *
       * <p>Calls to the {@code peek} method with no intervening calls to {@code next} do not affect the
       * iteration, and hence return the same object each time. A subsequent call to {@code next} is
       * guaranteed to return the same object again. For example:
       *
       * <pre>{@code
       * PeekingIterator<String> peekingIterator =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    	}
    	if w.Op == OpSliceCap && r&lt == 0 && ft.lens[w.Args[0].ID] != nil {
    		// same, capacity on the RHS.
    		ft.update(parent, v, ft.lens[w.Args[0].ID], d, r|gt)
    	}
    
    	// Process fence-post implications.
    	//
    	// First, make the condition > or >=.
    	if r == lt || r == lt|eq {
    		v, w = w, v
    		r = reverseBits[r]
    	}
    	switch r {
    	case gt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    				fmt.Fprintf(fgcc, "\treturn r;\n")
    			}
    		}
    		fmt.Fprintf(fgcc, "}\n")
    
    		// In internal linking mode, the Go linker sees both
    		// the C wrapper written above and the Go wrapper it
    		// references. Hence, export the C wrapper (e.g., for
    		// if we're building a shared object). The Go linker
    		// will resolve the C wrapper's reference to the Go
    		// wrapper without a separate export.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    			//
    			// When -coverpkg=<pattern> is in effect, we want to
    			// express the coverage percentage for each package as a
    			// fraction of *all* the statements that match the
    			// pattern, hence if "c" doesn't import "a", we need to
    			// pass as meta-data file for "a" (emitted during the
    			// package "a" build) to the package "c" run action, so
    			// that it can be incorporated with "c"'s regular
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top