Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,739 for notC (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

        }
    
        def "requested attributes are not sorted when there is a different set of attributes used for precedence"() {
            def x = Attribute.of("x", String)
            def a = Attribute.of("a", Flavor)
            def c = Attribute.of("c", ConcreteNamed)
    
            schema.attributeDisambiguationPrecedence(Attribute.of("notA", Flavor), Attribute.of("notB", String), Attribute.of("notC", ConcreteNamed))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Tom Tresansky <******@****.***> 1717189278 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/go/build/constraint/expr.go

    func pushNot(x Expr, not bool) Expr {
    	switch x := x.(type) {
    	default:
    		// unreachable
    		return x
    	case *NotExpr:
    		if _, ok := x.X.(*TagExpr); ok && !not {
    			return x
    		}
    		return pushNot(x.X, !not)
    	case *TagExpr:
    		if not {
    			return &NotExpr{X: x}
    		}
    		return x
    	case *AndExpr:
    		x1 := pushNot(x.X, not)
    		y1 := pushNot(x.Y, not)
    		if not {
    			return or(x1, y1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/sort/sort.go

    // with not-a-number (NaN) values ordered before other values.
    type Float64Slice []float64
    
    func (x Float64Slice) Len() int { return len(x) }
    
    // Less reports whether x[i] should be ordered before x[j], as required by the sort Interface.
    // Note that floating-point comparison by itself is not a transitive relation: it does not
    // report a consistent ordering for not-a-number (NaN) values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/shared_test.go

    }
    
    // The shared library contains a note listing the packages it contains in a section
    // that is not mapped into memory.
    func testPkgListNote(t *testing.T, f *elf.File, note *note) {
    	if note.section.Flags != 0 {
    		t.Errorf("package list section has flags %v, want 0", note.section.Flags)
    	}
    	if isOffsetLoaded(f, note.section.Offset) {
    		t.Errorf("package list section contained in PT_LOAD segment")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  6. src/runtime/os_darwin.go

    //
    // The current implementation of notes on Darwin is not async-signal-safe,
    // because the functions pthread_mutex_lock, pthread_cond_signal, and
    // pthread_mutex_unlock, called by semawakeup, are not async-signal-safe.
    // There is only one case where we need to wake up a note from a signal
    // handler: the sigsend function. The signal handler code does not require
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    This will cause the creation of lock state for each resolved configuration in that build execution.
    Note that if lock state existed previously, it is overwritten.
    
    NOTE: Gradle will not write lock state to disk if the build fails.
    This prevents persisting possibly invalid state.
    
    [[lock_all_configurations_in_one_build_execution]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        // or is currently being calculated or has just been calculated. It is possible for both this field and the result field to be
        // non-null at the same time for a brief period just after the result has been calculated
        @Nullable
        private volatile CalculationState<T, S> calculationState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Ordering.java

       * but not the other, the shorter iterable is considered to be less than the longer one. For
       * example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1, 1] <
       * [1, 2] < [2]}.
       *
       * <p>Note that {@code ordering.lexicographical().reverse()} is not equivalent to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Ordering.java

       * but not the other, the shorter iterable is considered to be less than the longer one. For
       * example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1, 1] <
       * [1, 2] < [2]}.
       *
       * <p>Note that {@code ordering.lexicographical().reverse()} is not equivalent to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top