Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,080 for imposes (0.18 sec)

  1. src/reflect/type.go

    	m sync.Map
    }
    
    // ChanOf returns the channel type with the given direction and element type.
    // For example, if t represents int, ChanOf(RecvDir, t) represents <-chan int.
    //
    // The gc runtime imposes a limit of 64 kB on channel element types.
    // If t's size is equal to or exceeds this limit, ChanOf panics.
    func ChanOf(dir ChanDir, t Type) Type {
    	typ := t.common()
    
    	// Look in cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/imports.ir.txt

    Yan Zhulanow <******@****.***> 1692687376 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/imports.ir.txt

    Yan Zhulanow <******@****.***> 1692687376 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 612 bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/depmgmt/root-two-imports.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/legacy.go

    import (
    	"fmt"
    	"path/filepath"
    	"strings"
    
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // This file implements the functions that are needed for backward
    // compatibility. Therefore, it imports various kubernetes packages
    // directly.
    
    const (
    	// legacyContainerLogsDir is the legacy location of container logs. It is the same with
    	// kubelet.containerLogsDir.
    	legacyContainerLogsDir = "/var/log/containers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/sort/gen_sort_variants.go

    	// Path is the file path into which the generator will emit the code for this
    	// variant.
    	Path string
    
    	// Package is the package this code will be emitted into.
    	Package string
    
    	// Imports is the imports needed for this package.
    	Imports string
    
    	// FuncSuffix is appended to all function names in this variant's code. All
    	// suffixes should be unique within a package.
    	FuncSuffix string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. src/go/ast/resolve.go

    	imports := make(map[string]*Object)
    
    	// complete file scopes with imports and resolve identifiers
    	for _, file := range files {
    		// ignore file if it belongs to a different package
    		// (error has already been reported)
    		if file.Name.Name != pkgName {
    			continue
    		}
    
    		// build file scope by processing all imports
    		importErrors := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceImportAliasTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/imports/importAliases"), Pattern.compile("^(.+)\\.kt$"), null, true);
      }
    
      @Test
      @TestMetadata("classAlias.kt")
      public void testClassAlias() {
        runTest("analysis/analysis-api/testData/imports/importAliases/classAlias.kt");
      }
    
      @Test
      @TestMetadata("classAliasWithCompanionObject.kt")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 15:30:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_error.txt

    ! stderr 'package nonexist is not in std'
    stderr '^go: issue27063 imports\n\tnonexist.example.com: cannot find module providing package nonexist.example.com'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: cannot find module providing package other.example.com/nonexist'
    
    ! go mod vendor
    ! stderr 'package nonexist is not in std'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ImportTest.kt

            )
        }
    
        @Test
        fun `collects basic imports`() {
            val imports = listOf(
                importOf("a", "b", "C"),
                importOf("a", "b", "c", "d")
            )
            val analysisContext = testContext()
            val result = defaultCodeResolver().collectImports(imports, analysisContext)
    
            assertEquals(
                mapOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top