Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 416 for necessarily (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

                shouldDeduplicateBuiltInSymbols = stubUnboundIrSymbols,
    
                // Because the file to compile may be contained in a "common" multiplatform module, an `expect` declaration doesn't necessarily
                // have an obvious associated `actual` symbol. `shouldStubOrphanedExpectSymbols` generates stubs for such `expect` declarations.
                shouldStubOrphanedExpectSymbols = true,
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/DependenciesMetadataAdapterTest.groovy

            then:
            dependenciesMetadata == []
        }
    
        def "can add a dependency with the same coordinates more than once"() {
            //this test documents given behavior, which is not necessarily needed
            given:
            fillDependencyList(1)
    
            when:
            adapter.add("org.gradle.test:module0:2.0")
    
            then:
            dependenciesMetadata.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

                "Test ok(OkTest) -> after err\n" +
                "Test class OkTest -> after class out\n" +
                "Test class OkTest -> after class err\n"
            )
    
            // This test covers current behaviour, not necessarily desired behaviour
    
            def xmlReport = new JUnitXmlTestExecutionResult(testDirectory)
            def classResult = xmlReport.testClass("OkTest")
            classResult.assertTestCaseStdout("ok", containsString(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/background-tasks.md

    ## Caveat
    
    If you need to perform heavy background computation and you don't necessarily need it to be run by the same process (for example, you don't need to share memory, variables, etc), you might benefit from using other bigger tools like <a href="https://docs.celeryq.dev" class="external-link" target="_blank">Celery</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/filterchain_options.go

    			// this sidecar. In this case, this filter chain is receiving plaintext one-way TLS traffic. The TLS
    			// inspector would detect this as TLS traffic [not necessarily mTLS]. But since there is no ALPN to match,
    			// this filter chain match will treat the traffic as just another TCP proxy.
    			TransportProtocol: xdsfilters.TLSTransportProtocol,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

       * executor. Each event can be added and dispatched as separate phases.
       *
       * <p>This class is very similar to {@link SequentialExecutor} with the exception that events can
       * be added without necessarily executing immediately.
       */
      private static final class PerListenerQueue<L> implements Runnable {
        final L listener;
        final Executor executor;
    
        @GuardedBy("this")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top