Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,729 for ninit (0.05 sec)

  1. okhttp-logging-interceptor/api/logging-interceptor.api

    	public static final field Companion Lokhttp3/logging/HttpLoggingInterceptor$Companion;
    	public final fun -deprecated_level ()Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public fun <init> ()V
    	public fun <init> (Lokhttp3/logging/HttpLoggingInterceptor$Logger;)V
    	public synthetic fun <init> (Lokhttp3/logging/HttpLoggingInterceptor$Logger;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
    	public final fun getLevel ()Lokhttp3/logging/HttpLoggingInterceptor$Level;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    Gradle comes with a built-in task, called `init`, that initializes a new Gradle project in an empty folder.
    The `init` task uses the (also built-in) `wrapper` task to create a Gradle wrapper script, `gradlew`.
    
    The first step is to create a folder for the new project and change directory into it.
    
    [listing.terminal.sample-command]
    ----
    \$ mkdir demo
    \$ cd demo
    ----
    
    == Run the init task
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyImportsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class GroovyImportsIntegrationTest extends AbstractIntegrationSpec {
    
        def "can handle duplicate imports in init scripts"() {
            def initScript = file('init.gradle')
            initScript << """
    initscript {
        repositories { ${mavenCentralRepository()} }
        dependencies {
            classpath 'org.apache.commons:commons-math3:3.6.1'
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 08 12:24:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/initScripts/customLogger/tests-kotlin/customLogger.kotlin.sample.conf

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

    executable: gradle
    args: showRepositories
    flags: "--quiet --init-script=init.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 135 bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/TimeTrackingProcessorTest.groovy

            }
            sourceVersion == SourceVersion.RELEASE_8
            result.executionTimeInMillis == 3
        }
    
        def "tracks time for init()"() {
            def processingEnv = Stub(ProcessingEnvironment)
    
            when:
            tracker.init(processingEnv)
    
            then:
            1 * delegate.init(processingEnv) >> {
                simulateWorkWithDuration(5)
            }
            result.executionTimeInMillis == 5
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/initScripts/configurationInjection/tests-kotlin/initScriptConfiguration.kotlin.sample.conf

    executable: gradle
    args: showRepos
    flags: "--init-script=init.gradle.kts --quiet"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 132 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops.mlir

        func.return %arg0 : tensor<f32>
      }
    
      func.func private @f() attributes {
        func.return
      }
    
      // Representation for init functions
      // CHECK: func @init
      // CHECK-SAME: exported_names = ["__tf_saved_model_session_initializer"]
      func.func @init(
        %arg0: tensor<!tf_type.string> {tf_saved_model.bound_input = @asset_sym_name},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. hack/verify-api-groups.sh

    done
    
    # check all groupversions to make sure they're in the init.sh file.  This isn't perfect, but its slightly
    # better than nothing
    for external_group_version in "${external_group_versions[@]}"; do
    	if ! grep -q "${external_group_version}" "${KUBE_ROOT}/hack/lib/init.sh" ; then
    		echo "missing ${external_group_version} from hack/lib/init.sh:/KUBE_AVAILABLE_GROUP_VERSIONS or hack/init.sh:/KUBE_NONSERVER_GROUP_VERSIONS"
    		exit 1
    	fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		// the likelihood of the first branch.
    	case ir.ONOT:
    		cond := cond.(*ir.UnaryExpr)
    		s.stmtList(cond.Init())
    		s.condBranch(cond.X, no, yes, -likely)
    		return
    	case ir.OCONVNOP:
    		cond := cond.(*ir.ConvExpr)
    		s.stmtList(cond.Init())
    		s.condBranch(cond.X, yes, no, likely)
    		return
    	}
    	c := s.expr(cond)
    	b := s.endBlock()
    	b.Kind = ssa.BlockIf
    	b.SetControl(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top