Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 1,347 for provider1 (0.08 sec)

  1. tensorflow/c/c_api.h

    // * Devices are not in this API.  Instead, they are created/used internally
    //   and the API just provides high level controls over the number of
    //   devices of each type.
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // --------------------------------------------------------------------------
    // TF_Version returns a string describing version information of the
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/ByteSource.java

     * is not an open, stateful stream for input that can be read and closed. Instead, it is an
     * immutable <i>supplier</i> of {@code InputStream} instances.
     *
     * <p>{@code ByteSource} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/extension/TestFileCleanUpExtension.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.testcleanup.extension
    
    import org.gradle.api.provider.Property
    
    
    /**
     *  An extension for project build script to configure whether the leftover files should be treated:
     *  report only, or a failure.
     */
    interface TestFileCleanUpExtension {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Mar 18 02:11:12 UTC 2022
    - 919 bytes
    - Viewed (0)
  4. build-logic/buildquality/src/main/kotlin/gradlebuild/archtest/PackageCyclesExtension.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.archtest
    
    import org.gradle.api.provider.ListProperty
    
    
    abstract class PackageCyclesExtension {
    
        abstract val excludePatterns: ListProperty<String>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jul 08 16:07:53 UTC 2022
    - 790 bytes
    - Viewed (0)
  5. cmd/xl-storage-disk-id-check.go

    	}
    	if err == nil || errors.Is(err, io.EOF) {
    		tracker.logSuccess()
    		return true
    	}
    	return false
    }
    
    // diskHealthWrapper provides either a io.Reader or io.Writer
    // that updates status of the provided tracker.
    // Use through diskHealthReader or diskHealthWriter.
    type diskHealthWrapper struct {
    	tracker *healthDiskCtxValue
    	r       io.Reader
    	w       io.Writer
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:56:26 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DslDocModel.groovy

                    }
                    XIncludeAwareXmlProvider provider = new XIncludeAwareXmlProvider()
                    def doc = new gradlebuild.docs.dsl.docbook.model.ClassDoc(className, provider.parse(classFile), document, classMetaData, extensionMetaData)
                    docBuilder.build(doc)
                    return doc
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  7. .idea/inspectionProfiles/Gradle.xml

          </replaceConfiguration>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Jun 26 21:49:47 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. compat/maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks.xml

    <toolchains>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.5</version>
             <vendor>sun</vendor>
         </provides>
         <configuration>
            <jdkHome>${env.JAVA_HOME}</jdkHome>
         </configuration>
      </toolchain>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.6</version>
             <vendor>sun</vendor>
         </provides>
         <configuration>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. compat/maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks-extend.xml

    -->
    
    <toolchains>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.5</version>
             <vendor>sun</vendor>
         </provides>
         <configuration>
            <jdkHome>${env.JAVA_HOME}</jdkHome>
            <toolsJar>lib/tools.jar</toolsJar>
         </configuration>
      </toolchain>
      <toolchain>
         <type>jdk</type>
         <provides>
             <version>1.6</version>
             <vendor>sun</vendor>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. cmd/api-router.go

    	},
    }
    
    // Set of s3 handler options as bit flags.
    type s3HFlag uint8
    
    const (
    	// when provided, disables Gzip compression.
    	noGZS3HFlag = 1 << iota
    
    	// when provided, enables only tracing of headers. Otherwise, both headers
    	// and body are traced.
    	traceHdrsS3HFlag
    
    	// when provided, disables throttling via the `maxClients` middleware.
    	noThrottleS3HFlag
    )
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 15:25:16 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top