Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,135 for produced (0.29 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/JsseDebugLogging.kt

              message.startsWith("Reload ") -> Type.Setup
              message == "No session to resume." -> Type.Handshake
              message.startsWith("Consuming ") -> Type.Handshake
              message.startsWith("Produced ") -> Type.Handshake
              message.startsWith("Negotiated ") -> Type.Handshake
              message.startsWith("Found resumable session") -> Type.Handshake
              message.startsWith("Resuming session") -> Type.Handshake
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. .gitignore

    /www/master/shared/config/development.json
    
    # Karma output
    /www/test_out
    
    # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
    /_tmp/
    /doc_tmp/
    
    # Test artifacts produced by Prow/kubetest2 jobs
    /_artifacts/
    /_rundir/
    
    # Go dependencies installed on Jenkins
    /_gopath/
    
    # Config directories created by gcloud and gsutil on Jenkins
    /.config/gcloud*/
    /.gsutil/
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationFinishedNotification.java

         */
        Object getNotificationOperationDetails();
    
        /**
         * A structured object representing the outcome of the operation.
         * Null if the operation failed, or if no result details are produced for the type of operation.
         */
        Object getNotificationOperationResult();
    
        /**
         * The operation failure.
         * Null if the operation was successful.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/SwiftToolChainDiscoveryIntegrationTest.groovy

      - Tool chain '${toolChain.id}' (Swift Compiler):
          - Could not determine SwiftC metadata: swiftc produced unexpected output.""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            configurationCacheRun 'assemble', '--scan', '-Dscan.dump'
    
            then:
            postBuildOutputContains 'Build scan written to'
            configurationCache.assertStateLoaded()
        }
    
        def "can use lib produced by included build"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            withLibBuild()
            withAppBuild()
    
            when:
            inDirectory 'app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    [[sec:jacoco_report_aggregation_usage]]
    == Usage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/Invocation.java

            return pos < getArgsCount() ? getArgument(pos) : null;
        }
    
        /**
         * Forwards the call to the original Groovy implementation and returns the result.
         *
         * @return the value produced by the original Groovy implementation
         * @throws Throwable if the original Groovy implementation throws
         */
        Object callOriginal() throws Throwable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 05:57:27 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/ComponentReport.java

    import java.util.Collection;
    
    import static org.gradle.model.internal.type.ModelTypes.modelMap;
    
    /**
     * Displays some details about the software components produced by the project.
     */
    @Deprecated
    @DisableCachingByDefault(because = "Produces only non-cacheable console output")
    public abstract class ComponentReport extends DefaultTask {
        @Inject
        protected StyledTextOutputFactory getTextOutputFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     * {@link #armWatchProbe(File)} is called.
     *
     * When the probe is armed, a probe file is created (or re-created) under the hierarchy.
     * This should cause a file system event to be produced by the operating system.
     * We listen to those events specifically in {@link FileWatcherRegistry}.
     * Once the event arrives, {@link #triggerWatchProbe(String)} is called with the path,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/covdata/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Covdata is a program for manipulating and generating reports
    from 2nd-generation coverage testing output files, those produced
    from running applications or integration tests. E.g.
    
    	$ mkdir ./profiledir
    	$ go build -cover -o myapp.exe .
    	$ GOCOVERDIR=./profiledir ./myapp.exe <arguments>
    	$ ls ./profiledir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top