Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 208 for provider3 (0.19 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    //
    // As some filesystems require special setup, these tests are run manually.
    //
    // Each filesystem implementation can be provided by DSOs, so we provide the
    // `--dsos` flag to specify a list of shared objects to be loaded in order.
    // If the flag is not used, no shared objects are loaded.
    //
    // Every filesystem provides support for accessing URIs of form
    // `[<scheme>://]<path>` where `<scheme>` is optional (if missing, we are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    //
    // Pod workers provide a consistent source of information to other kubelet
    // loops about the status of the pod and whether containers can be
    // running. The ShouldPodContentBeRemoved() method tracks whether a pod's
    // contents should still exist, which includes non-existent pods after
    // SyncKnownPods() has been called once (as per the contract, all existing
    // pods should be provided via UpdatePod before SyncKnownPods is invoked).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	// Msg contains a human readable string that describes the error.
    	Msg string
    	// RecordHeader contains the five bytes of TLS record header that
    	// triggered the error.
    	RecordHeader [5]byte
    	// Conn provides the underlying net.Conn in the case that a client
    	// sent an initial handshake that didn't look like TLS.
    	// It is nil if there's already been a handshake or a TLS alert has
    	// been written to the connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

            then:
            pomReader.getDependencies().size() == 1
            assertResolvedPomDependency(key, 'version-three')
        }
    
        def "gets dependency with provided properties declared in active profile"() {
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeAmbiguityError
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeUnmatchedTypeArgumentsError
    import org.jetbrains.kotlin.fir.resolve.providers.symbolProvider
    import org.jetbrains.kotlin.fir.resolve.transformers.PackageResolutionResult
    import org.jetbrains.kotlin.fir.resolve.transformers.resolveToPackageOrClass
    import org.jetbrains.kotlin.fir.scopes.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

          <component group="org.apache.maven.wagon" name="wagon-provider-api" version="3.3.4">
             <artifact name="wagon-provider-api-3.3.4.jar">
                <pgp value="FA77DCFEF2EE6EB2DEBEDD2C012579464D01C06A"/>
             </artifact>
          </component>
          <component group="org.apache.maven.wagon" name="wagon-provider-api" version="3.5.3">
             <artifact name="wagon-provider-api-3.5.3.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/httproute_test.go

    	meshapi "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/mesh"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    :plugin-portal: https://plugins.gradle.org/
    
    [[kotlin_dsl]]
    = Gradle Kotlin DSL Primer
    
    Gradle's Kotlin DSL provides an alternative syntax to the traditional Groovy DSL with an enhanced editing experience in supported IDEs, with superior content assist, refactoring, documentation, and more.
    This chapter provides details of the main Kotlin DSL constructs and how to use it to interact with the Gradle API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

        }
    
        def "changing case-sensitive setting makes task out-of-date"() {
            given:
            buildScript '''
                task (copy, type:Copy) {
                   caseSensitive = providers.systemProperty('case-sensitive').present
                   from 'src'
                   into 'dest'
                   include '**/sub/**'
                   exclude '**/ignore/**'
                }
            '''.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top