Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 417 for inits (0.03 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

        classLoader: ClassLoader = MockProject::class.java.classLoader,
        init: StandaloneAnalysisAPISessionBuilder.() -> Unit,
    ): StandaloneAnalysisAPISession {
        contract {
            callsInPlace(init, InvocationKind.EXACTLY_ONCE)
        }
        return StandaloneAnalysisAPISessionBuilder(
            projectDisposable,
            unitTestMode,
            classLoader
        ).apply(init).build(
            withPsiDeclarationFromBinaryModuleProvider,
        )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtSourceModuleBuilder.kt

            }
        }
    }
    
    @OptIn(ExperimentalContracts::class)
    public inline fun KtModuleProviderBuilder.buildKtSourceModule(init: KtSourceModuleBuilder.() -> Unit): KtSourceModule {
        contract {
            callsInPlace(init, InvocationKind.EXACTLY_ONCE)
        }
        return KtSourceModuleBuilder(kotlinCoreProjectEnvironment).apply(init).build()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/ValidityAwareCachedValue.kt

    @Suppress("UnusedReceiverParameter") // we need to have the KtLifetimeOwner as receiver to make sure it's called only for KtLifetimeOwner
    internal fun <T> KaLifetimeOwner.cached(init: () -> T): ValidityAwareCachedValue<T> {
        return ValidityAwareCachedValue(lazy(LazyThreadSafetyMode.PUBLICATION, init))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    func (b *builder) forStmt(s *ast.ForStmt, label *lblock) {
    	//	...init...
    	//      jump loop
    	// loop:
    	//      if cond goto body else done
    	// body:
    	//      ...body...
    	//      jump post
    	// post:				 (target of continue)
    	//      ...post...
    	//      jump loop
    	// done:                                 (target of break)
    	if s.Init != nil {
    		b.stmt(s.Init)
    	}
    	body := b.newBlock(KindForBody, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/net/fd_windows.go

    			ZeroReadIsEOF: sotype != syscall.SOCK_DGRAM && sotype != syscall.SOCK_RAW,
    		},
    		family: family,
    		sotype: sotype,
    		net:    net,
    	}
    	return ret, nil
    }
    
    func (fd *netFD) init() error {
    	errcall, err := fd.pfd.Init(fd.net, true)
    	if errcall != "" {
    		err = wrapSyscallError(errcall, err)
    	}
    	return err
    }
    
    // Always returns nil for connected peer address result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/build-init/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.update-init-template-versions")
    }
    
    description = """This project contains the Build Init plugin, which is automatically applied to the root project of every build, and provides the init and wrapper tasks.
    
    This project should NOT be used as an implementation dependency anywhere (except when building a Gradle distribution)."""
    
    errorprone {
        disabledChecks.addAll(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsIntegrationTest.groovy

        def setup() {
            requireOwnGradleUserHomeDir()
        }
    
        def "can configure caches via init script and query from settings script"() {
            def initDir = new File(executer.gradleUserHomeDir, "init.d")
            initDir.mkdirs()
            new File(initDir, "cache-settings.gradle") << """
                beforeSettings { settings ->
                    settings.caches {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	kind: JoinConfiguration
    //
    // To print the defaults for "init" and "join" actions use the following commands:
    //
    //	kubeadm config print init-defaults
    //	kubeadm config print join-defaults
    //
    // The list of configuration types that must be included in a configuration file depends by the action you are
    // performing (init or join) and by the configuration options you are going to use (defaults or advanced customization).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    			expectedCPU: 6,
    		},
    		{
    			name:        "TestCase09: restartable init container + regular container",
    			pod:         testPod9,
    			expectedCPU: 2,
    		},
    		{
    			name:        "TestCase09: multiple restartable init containers",
    			pod:         testPod10,
    			expectedCPU: 7,
    		},
    		{
    			name:        "TestCase11: multiple restartable and regular init containers",
    			pod:         testPod11,
    			expectedCPU: 8,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			name:                "not allow pod with restartable init containers if sidecar containers is disabled",
    			pod:                 newPodWithRestartableInitContainers(),
    			wantPreFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable, "Pod has a restartable init container and the SidecarContainers feature is disabled"),
    		},
    		{
    			name:                    "allow pod without restartable init containers if sidecar containers is enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
Back to top