Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,007 for imposes (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/types2/package.go

    // If pkg uses cgo and the FakeImportC configuration option
    // was enabled, the imports list may contain a fake "C" package.
    func (pkg *Package) Imports() []*Package { return pkg.imports }
    
    // SetImports sets the list of explicitly imported packages to list.
    // It is the caller's responsibility to make sure list elements are unique.
    func (pkg *Package) SetImports(list []*Package) { pkg.imports = list }
    
    func (pkg *Package) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 06 13:09:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftXCTestWithDepAndCustomXCTestSuite.groovy

        String testSuiteName
        String methodName
        String assertion
        String[] imports
        String[] importsTestable
    
        SwiftXCTestWithDepAndCustomXCTestSuite(
            String projectName,
            String classToTest,
            String assertion,
            String[] imports,
            String[] importsTestable
        ) {
            super(projectName)
            this.testSuiteName = classToTest + "Test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/test.go

    			pmain.Internal.Imports = append(pmain.Internal.Imports, ptest)
    			pmain.Imports = append(pmain.Imports, ptest.ImportPath)
    			t.ImportTest = true
    		}
    		if pxtest != nil {
    			pmain.Internal.Imports = append(pmain.Internal.Imports, pxtest)
    			pmain.Imports = append(pmain.Imports, pxtest.ImportPath)
    			t.ImportXtest = true
    		}
    
    		// Sort and dedup pmain.Imports.
    		// Only matters for go list -test output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top