Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,729 for ninit (1.51 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tac_translate.cc

                         llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> output_mlir(
        "output-mlir",
        llvm::cl::desc(
            "Output MLIR rather than FlatBuffer for the generated TFLite model"),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> inline_subgraphs(
        "inline-subgraphs",
        llvm::cl::desc("Whether or not to inline all the subgraphs"),
        llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/ScalaApplicationInitIntegrationTest.groovy

        @Override
        String subprojectName() { 'app' }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'scala-application', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
            subprojectDir.file("src/main/scala").assertHasDescendants(SAMPLE_APP_CLASS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCall.kt

    open class IJProject(val init: () -> Unit = {})
    
    class KotlinIDE : IJProject(init = {
        anySymbols
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 103 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_off_init.txt

    # 'go mod init' should refuse to initialize a module if it will be
    # ignored anyway due to GO111MODULE=off.
    env GO111MODULE=off
    ! go mod init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:46:25 UTC 2020
    - 216 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/initScripts/externalDependency/tests-groovy/externalInitDependency.groovy.sample.conf

    executable: gradle
    args: doNothing
    flags: "--init-script=init.gradle --quiet"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 127 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/initScripts/customLogger/tests-groovy/customLogger.groovy.sample.conf

    executable: gradle
    args: "build --init-script=customLogger.init.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtLibrarySourceModuleBuilder.kt

    }
    
    @OptIn(ExperimentalContracts::class)
    public inline fun KtModuleProviderBuilder.buildKtLibrarySourceModule(init: KtLibrarySourceModuleBuilder.() -> Unit): KtLibrarySourceModule {
        contract {
            callsInPlace(init, InvocationKind.EXACTLY_ONCE)
        }
        return KtLibrarySourceModuleBuilder(kotlinCoreProjectEnvironment).apply(init).build()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. test/fixedbugs/issue5963.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to die in runtime due to init goroutine exiting while
    // locked to main thread.
    
    package main
    
    import (
    	"os"
    	"runtime"
    )
    
    func init() {
    	c := make(chan int, 1)
    	defer func() {
    		c <- 0
    	}()
    	go func() {
    		os.Exit(<-c)
    	}()
    	runtime.Goexit()
    }
    
    func main() {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 929 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

            "expresses argument shapes [1,2], [] and [1,?]"),
        llvm::cl::Optional, llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> exported_model_signatures(
        "exported-model-signatures",
        llvm::cl::desc(
            "Comma-separated list of exported model signatures to convert"),
        llvm::cl::Optional, llvm::cl::init("serving_default"));
    
    // NOLINTNEXTLINE
    opt<std::string> tag_names(
        "tags",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4517a.go

    // errorcheck
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 245 bytes
    - Viewed (0)
Back to top