Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 630 for First (2.82 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolRestoreFromDifferentModuleTest.kt

                testServices.expressionMarkerProvider.getElementsOfTypeAtCarets<KtDeclaration>(testServices).single().first
    
            val restoreAt =
                testServices.expressionMarkerProvider.getElementsOfTypeAtCarets<KtElement>(
                    testServices,
                    caretTag = "restoreAt"
                ).single().first
    
            val project = declaration.project
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Ordering.java

      <T2 extends T> Ordering<Entry<T2, ?>> onKeys() {
        return onResultOf(Maps.<T2>keyFunction());
      }
    
      /**
       * Returns an ordering which first uses the ordering {@code this}, but which in the event of a
       * "tie", then delegates to {@code secondaryComparator}. For example, to sort a bug list first by
       * status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10ClassErrorType.kt

            get() = withValidityAssertion {
                fe10Type.formatParams.first().split('.').map {
                    KaClassTypeQualifier.KaUnresolvedClassTypeQualifier(Name.guessByFirstCharacter(it), emptyList(), token)
                }
            }
    
        @KaAnalysisNonPublicApi
        override val presentableText: String?
            get() = withValidityAssertion { fe10Type.formatParams.first() }
    
        @KaAnalysisNonPublicApi
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/intervals.go

    	// overlap.
    	var pv pairVisitor
    	first := pv.init(is, is2)
    	for {
    		second := pv.nxt()
    		if second.done() {
    			break
    		}
    		if first.pairIndex == second.pairIndex {
    			first = second
    			continue
    		}
    		if first.i.Overlaps(second.i) {
    			return true
    		}
    		first = second
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRuleSetup.java

                    return new AbstractMap.SimpleEntry<>(key, replacedAccessor);
                });
        }
    
        private static <T> Map<AccessorKey, T> diff(Map<AccessorKey, T> first, Map<AccessorKey, T> second) {
            return first.entrySet().stream()
                .filter(e -> !second.containsKey(e.getKey()))
                .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/encoding/csv/fuzz_test.go

    			r.Comma = tt.Comma
    			r.Comment = tt.Comment
    			r.LazyQuotes = tt.LazyQuotes
    			r.TrimLeadingSpace = tt.TrimLeadingSpace
    
    			records, err := r.ReadAll()
    			if err != nil {
    				continue
    			}
    			t.Logf("first records = %#v", records)
    
    			buf.Reset()
    			w := NewWriter(buf)
    			w.Comma = tt.Comma
    			err = w.WriteAll(records)
    			if err != nil {
    				t.Logf("writer  = %#v\n", w)
    				t.Logf("records = %v\n", records)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 01:26:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

          if (valueReference.isLoading()) {
            valueReference.notifyNewValue(null);
            return first;
          } else {
            return removeEntryFromChain(first, entry);
          }
        }
    
        @GuardedBy("this")
        @CheckForNull
        ReferenceEntry<K, V> removeEntryFromChain(
            ReferenceEntry<K, V> first, ReferenceEntry<K, V> entry) {
          int newCount = count;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    // Package stdlib provides a table of all exported symbols in the
    // standard library, along with the version at which they first
    // appeared.
    package stdlib
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Symbol struct {
    	Name    string
    	Kind    Kind
    	Version Version // Go version that first included the symbol
    }
    
    // A Kind indicates the kind of a symbol:
    // function, variable, constant, type, and so on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/BuildOperationsFileSystemWatchingIntegrationTest.groovy

            !result.watchingEnabled
            result.statistics == null
        }
    
        private Map<String, ?> buildStartedResult() {
            operations.first(BuildStartedFileSystemWatchingBuildOperationType).result
        }
    
        private Map<String, ?> buildFinishedResult() {
            operations.first(BuildFinishedFileSystemWatchingBuildOperationType).result
        }
    
        private static boolean retainedFiles(Map<String, ?> result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/encoding/xml/read_test.go

    	}
    }
    
    type BadPathTestA struct {
    	First  string `xml:"items>item1"`
    	Other  string `xml:"items>item2"`
    	Second string `xml:"items"`
    }
    
    type BadPathTestB struct {
    	Other  string `xml:"items>item2>value"`
    	First  string `xml:"items>item1"`
    	Second string `xml:"items>item1>value"`
    }
    
    type BadPathTestC struct {
    	First  string
    	Second string `xml:"First"`
    }
    
    type BadPathTestD struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top