Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for imposes (0.14 sec)

  1. src/cmd/compile/internal/types2/check.go

    	files         []*syntax.File              // list of package files
    	versions      map[*syntax.PosBase]string  // maps files to version strings (each file has an entry); shared with Info.FileVersions if present
    	imports       []*PkgName                  // list of imported packages
    	dotImportMap  map[dotImportKey]*PkgName   // maps dot-imported objects to the package they were dot-imported through
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    		Fingerprint: ctxt.Fingerprint,
    		Flags:       flags,
    	}
    	h.Write(w.Writer)
    
    	// String table
    	w.StringTable()
    
    	// Autolib
    	h.Offsets[goobj.BlkAutolib] = w.Offset()
    	for i := range ctxt.Imports {
    		ctxt.Imports[i].Write(w.Writer)
    	}
    
    	// Package references
    	h.Offsets[goobj.BlkPkgIdx] = w.Offset()
    	for _, pkg := range w.pkglist {
    		w.StringRef(pkg)
    	}
    
    	// File table (for DWARF and pcln generation).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

            val project = contextFile.project
            val codeFragment = KtExpressionCodeFragment(project, "fragment.kt", "x - 1", imports = null, contextElement)
    
            val codeFragmentModule = ProjectStructureProvider.getModule(project, codeFragment, contextualModule = contextModule)
            requireIsInstance<KtDanglingFileModule>(codeFragmentModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

            assertThat(this, notNullValue())
            this as KotlinScriptExternalDependencies
            assertTrue(classpath.toList().isNotEmpty())
            assertTrue(imports.toList().isNotEmpty())
            assertTrue(sources.toList().isNotEmpty())
        }
    }
    
    
    internal
    fun scriptContentFor(scriptFile: File?) =
        mock<ScriptContents> {
            on { file } doReturn scriptFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

        }
    
        override fun servicesForBuildTree(requirements: BuildActionModelRequirements): BuildTreeModelControllerServices.Supplier {
            val startParameter = requirements.startParameter
    
            // Isolated projects also implies configuration cache
            if (startParameter.isolatedProjects.get() && !startParameter.configurationCache.get()) {
                if (startParameter.configurationCache.isExplicit) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    	EnableQUICListeners = env.Register("PILOT_ENABLE_QUIC_LISTENERS", false,
    		"If true, QUIC listeners will be generated wherever there are listeners terminating TLS on gateways "+
    			"if the gateway service exposes a UDP port with the same number (for example 443/TCP and 443/UDP)").Get()
    
    	EnableTLSOnSidecarIngress = env.Register("ENABLE_TLS_ON_SIDECAR_INGRESS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

    import groovy.transform.CompileStatic
    import org.gradle.api.JavaVersion
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.test.precondition.TestPrecondition
    import org.testcontainers.DockerClientFactory
    
    // These imports are required, IntelliJ incorrectly thinks that they are not used because old versions of Groovy
    // permitted subtypes to use the parent type's methods without importing them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/runtime/debug/garbage.go

    // the program crashes.
    // SetMaxStack returns the previous setting.
    // The initial setting is 1 GB on 64-bit systems, 250 MB on 32-bit systems.
    // There may be a system-imposed maximum stack limit regardless
    // of the value provided to SetMaxStack.
    //
    // SetMaxStack is useful mainly for limiting the damage done by
    // goroutines that enter an infinite recursion. It only limits future
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

                    return;
                }
                if (toAdd.getMetadata().getHierarchy().contains(configuration.getName())) {
                    // toAdd is a child, so implies this configuration
                    iter.remove();
                }
            }
            configurations.add(toAdd);
        }
    
        public List<Exclude> getAllExcludes() {
            return excludes;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    	-buildmode=c-archive
    		Build the listed main package, plus all packages it imports,
    		into a C archive file. The only callable symbols will be those
    		functions exported using a cgo //export comment. Requires
    		exactly one main package to be listed.
    
    	-buildmode=c-shared
    		Build the listed main package, plus all packages it imports,
    		into a C shared library. The only callable symbols will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top