Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 650 for necessarily (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

         * Get all names such that {@link #getConfiguration(String)} return a non-null value.
         */
        Set<String> getConfigurationNames();
    
        /**
         * Returns the configuration with the given name. A component does not necessarily define any configurations.
         * <p>
         * This method should be avoided if possible. Instead, use {@link GraphSelectionCandidates#getVariantByConfigurationName(String)},
         * which exposes configurations as a variant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/internal/buildcfg/exp.go

    type ExperimentFlags struct {
    	goexperiment.Flags
    	baseline goexperiment.Flags
    }
    
    // Experiment contains the toolchain experiments enabled for the
    // current build.
    //
    // (This is not necessarily the set of experiments the compiler itself
    // was built with.)
    //
    // experimentBaseline specifies the experiment flags that are enabled by
    // default in the current toolchain. This is, in effect, the "control"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

    package org.gradle.internal.configuration.problems
    
    import org.gradle.internal.DisplayName
    import org.gradle.internal.problems.failure.Failure
    import kotlin.reflect.KClass
    
    
    /**
     * A problem that does not necessarily compromise the execution of the build.
     */
    data class PropertyProblem(
        val trace: PropertyTrace,
        val message: StructuredMessage,
        val exception: Throwable? = null,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/SortedSetMultimap.java

       * obtain this map with the more specific generic type {@code Map<K, SortedSet<V>>}, call {@link
       * Multimaps#asMap(SortedSetMultimap)} instead. <b>However</b>, the returned map <i>itself</i> is
       * not necessarily a {@link SortedMap}: A {@code SortedSetMultimap} must expose the <i>values</i>
       * for a given key in sorted order, but it need not expose the <i>keys</i> in sorted order.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. src/net/fd_unix.go

    			case <-done:
    				interruptRes <- nil
    			}
    		}()
    	}
    
    	for {
    		// Performing multiple connect system calls on a
    		// non-blocking socket under Unix variants does not
    		// necessarily result in earlier errors being
    		// returned. Instead, once runtime-integrated network
    		// poller tells us that the socket is ready, get the
    		// SO_ERROR socket option to see if the connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/compress/zlib/writer.go

    		if err != nil {
    			return err
    		}
    		z.digest = adler32.New()
    	}
    	return nil
    }
    
    // Write writes a compressed form of p to the underlying io.Writer. The
    // compressed bytes are not necessarily flushed until the Writer is closed or
    // explicitly flushed.
    func (z *Writer) Write(p []byte) (n int, err error) {
    	if !z.wroteHeader {
    		z.err = z.writeHeader()
    	}
    	if z.err != nil {
    		return 0, z.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractMultimap.java

    import java.util.Map.Entry;
    import java.util.Set;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A skeleton {@code Multimap} implementation, not necessarily in terms of a {@code Map}.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AbstractMultimap<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

        /**
         * Returns the direct children of this project, in public iteration order.
         */
        Set<ProjectState> getChildProjects();
    
        /**
         * Returns the name of this project (which may not necessarily be unique).
         */
        String getName();
    
        /**
         * Returns an identifying path for this project in the build tree.
         */
        Path getIdentityPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_trimpath.txt

    go build -trimpath -o paths-b.exe paths
    cmp -q paths-a.exe paths-b.exe
    
    
    # Same sequence of tests but with gccgo.
    # gccgo does not support builds in module mode.
    [!exec:gccgo] stop
    [cross] stop  # gccgo can't necessarily cross-compile
    env GOPATH=$WORK/a
    
    # A binary built with gccgo without -trimpath should contain the current
    # GOPATH and GOROOT.
    go build -compiler=gccgo -o paths-dbg.exe paths
    exec ./paths-dbg.exe paths-dbg.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            where:
            larger  | smaller
            "1.0.0" | "1.0"
            "1.0.0" | "1"
        }
    
        def "incorrectly compares Maven snapshot-like versions (current behaviour not necessarily desired behaviour"() {
            expect:
            compare(smaller, larger) < 0
            compare(larger, smaller) > 0
            compare(smaller, smaller) == 0
            compare(larger, larger) == 0
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top