Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 736 for shared (0.27 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
     * @param sharedBinaryRoots Binary roots that are shared between multiple different projects. This allows Kotlin tests to cache stubs for
     * shared libraries like the Kotlin stdlib.
     */
    class KotlinStandaloneDeclarationProviderFactory(
        private val project: Project,
        sourceKtFiles: Collection<KtFile>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set.go

    	// podLister is able to list/get pods from a shared informer's store
    	podLister corelisters.PodLister
    	// podListerSynced returns true if the pod shared informer has synced at least once
    	podListerSynced cache.InformerSynced
    	// setLister is able to list/get stateful sets from a shared informer's store
    	setLister appslisters.StatefulSetLister
    	// setListerSynced returns true if the stateful set shared informer has synced at least once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. .github/CODEOWNERS

    /build-logic-settings/                      @gradle/bt-developer-productivity
    /build.gradle*                              @gradle/bt-developer-productivity
    /settings.gradle*                           @gradle/bt-developer-productivity
    gradle/shared-with-buildSrc/                @gradle/bt-developer-productivity
    platforms/build-infrastructure/             @gradle/bt-developer-productivity
    subprojects/internal-build-reports/         @gradle/bt-developer-productivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            os.getExecutableName("a.bat") == "a.exe"
            os.getExecutableName("a.b/c") == "a.b/c.exe"
            os.getExecutableName("a.b\\c") == "a.b\\c.exe"
        }
    
        def "windows transforms shared library names"() {
            def os = new OperatingSystem.Windows()
    
            expect:
            os.sharedLibrarySuffix == ".dll"
            os.linkLibrarySuffix == ".lib"
            os.getSharedLibraryName("a.dll") == "a.dll"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

    import org.gradle.test.fixtures.archive.JarTestFixture
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.GradleVersion
    import org.gradle.util.internal.GUtil
    import spock.lang.Shared
    
    import java.nio.charset.StandardCharsets
    import java.util.zip.ZipEntry
    import java.util.zip.ZipFile
    
    import static org.hamcrest.CoreMatchers.containsString
    import static org.hamcrest.CoreMatchers.equalTo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/syscall/exec_linux.go

    // copied from linux/sched.h.
    const (
    	CLONE_VM             = 0x00000100 // set if VM shared between processes
    	CLONE_FS             = 0x00000200 // set if fs info shared between processes
    	CLONE_FILES          = 0x00000400 // set if open files shared between processes
    	CLONE_SIGHAND        = 0x00000800 // set if signal handlers and blocked signals shared
    	CLONE_PIDFD          = 0x00001000 // set if a pidfd should be placed in parent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    		newImport.Name = &ast.Ident{Name: name}
    	}
    
    	// Find an import decl to add to.
    	// The goal is to find an existing import
    	// whose import path has the longest shared
    	// prefix with path.
    	var (
    		bestMatch  = -1         // length of longest shared prefix
    		lastImport = -1         // index in f.Decls of the file's final import decl
    		impDecl    *ast.GenDecl // import decl containing the best match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/util/util.go

    		return volumeSpec, nil
    	}
    
    	// Do not return the original volume object, since it's from the shared
    	// informer it may be mutated by another consumer.
    	clonedPodVolume := podVolume.DeepCopy()
    
    	origspec := volume.NewSpecFromVolume(clonedPodVolume)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    "assert 'child' == property('childProperty')",
                    "assert 'child' == properties.childProperty",
                    "assert 'shared' == sharedProperty",
                    "assert 'shared' == property('sharedProperty')",
                    "assert 'shared' == properties.sharedProperty",
                    "assert 'convention' == conventionProperty",
                    // Use a separate class, to isolate Project from the script
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gc.go

    	if err != nil {
    		return err
    	}
    
    	// On OS X when using external linking to build a shared library,
    	// the argument passed here to -o ends up recorded in the final
    	// shared library in the LC_ID_DYLIB load command.
    	// To avoid putting the temporary output directory name there
    	// (and making the resulting shared library useless),
    	// run the link in the output directory so that -o can name
    	// just the final path element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top