Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Karkur (1.6 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/visibilityChecker/AbstractVisibilityCheckerTest.kt

    /**
     * To find the element for the use-site position, the visibility checker test looks for an element called "useSite" in the main module if
     * the main file doesn't or cannot contain a caret marker, e.g. in files from binary libraries. The target name is case-insensitive, so
     * classes called `UseSite` will be found as well.
     */
    private const val USE_SITE_ELEMENT_NAME = "usesite"
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 16:12:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

            return when {
                failure != null -> failureDecorator.decorate(failure)
                severity == ProblemSeverity.Failure -> DecoratedFailure.MARKER
                else -> null
            }
        }
    
        private
        fun decorateMessage(problem: PropertyProblem, failure: Failure?): StructuredMessage {
            if (!isStacktraceHashes || failure == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    	if str < hdr+8 || len(d.data) < str {
    		return nil, errCorrupt
    	}
    	d.data, d.str = data[:str], d.data[str:]
    	// Check that string table looks valid.
    	// First string is empty string (length 0),
    	// and we leave a marker byte 0xFF at the end
    	// just to make sure that the file is not truncated.
    	if len(d.str) == 0 || d.str[0] != 0 || d.str[len(d.str)-1] != 0xFF {
    		return nil, errCorrupt
    	}
    
    	n := d.intAt(hdr + 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        @Override
        @CheckForNull
        public E getNext() {
          return null;
        }
      }
    
      /** Marker interface for {@link InternalEntry} implementations for strong values. */
      interface StrongValueEntry<K, V, E extends InternalEntry<K, V, E>>
          extends InternalEntry<K, V, E> {}
    
      /** Marker interface for {@link InternalEntry} implementations for weak values. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

        @Override
        @CheckForNull
        public E getNext() {
          return null;
        }
      }
    
      /** Marker interface for {@link InternalEntry} implementations for strong values. */
      interface StrongValueEntry<K, V, E extends InternalEntry<K, V, E>>
          extends InternalEntry<K, V, E> {}
    
      /** Marker interface for {@link InternalEntry} implementations for weak values. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    			if info, err := os.Stat(exe); err == nil && !info.IsDir() {
    				xremove(exe)
    			}
    			xremove(exe + ".exe")
    		case !d.IsDir() && strings.HasPrefix(d.Name(), "z"):
    			// Remove generated file, identified by marker string.
    			head := make([]byte, 512)
    			if f, err := os.Open(path); err == nil {
    				io.ReadFull(f, head)
    				f.Close()
    			}
    			if bytes.HasPrefix(head, generated) {
    				xremove(path)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    func ssaMarker(name string) *ir.Name {
    	return ir.NewNameAt(base.Pos, &types.Sym{Name: name}, nil)
    }
    
    var (
    	// marker node for the memory variable
    	memVar = ssaMarker("mem")
    
    	// marker nodes for temporary variables
    	ptrVar       = ssaMarker("ptr")
    	lenVar       = ssaMarker("len")
    	capVar       = ssaMarker("cap")
    	typVar       = ssaMarker("typ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-55111`](https://youtrack.jetbrains.com/issue/KT-55111) OptIn: forbid constructor calls with default arguments under marker
    - [`KT-49856`](https://youtrack.jetbrains.com/issue/KT-49856) Incorrect smartcast on var assigned in try-catch block
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top