Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 736 for shared (0.8 sec)

  1. operator/pkg/manifest/shared.go

    	"istio.io/istio/operator/pkg/validate"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    	pkgversion "istio.io/istio/pkg/version"
    )
    
    // installerScope is the scope for shared manifest package.
    var installerScope = log.RegisterScope("installer", "installer")
    
    // GenManifests generates a manifest map, keyed by the component name, from input file list and a YAML tree
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    Tom Tresansky <******@****.***> 1715641965 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    │       ├── src
    │       │   └──...
    │       └── build.gradle    // <3>
    ├── shared
    │   ├── src
    │   │   └──...
    │   └── build.gradle
    └── settings.gradle
    ----
    <1> Create the `MyCustomTask` task.
    <2> A shared build script.
    <3> Uses the `MyCustomTask` task and shared build script.
    =====
    
    In the `buildSrc`, the build script `shared.gradle(.kts)` is created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

          -root
            -api
            -shared
              -api
              -model
            -services
              -utilities (renamed by user to 'util')
            -util
            -contrib
              -services
                -util
          */
    
            def settingsFile = file("settings.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    	checkPIE(t, name)
    }
    
    // Build a GOPATH package into a shared library that links against the goroot runtime
    // and an executable that links against both.
    func TestGopathShlib(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "install", "-buildmode=shared", "-linkshared", "./depBase")
    	shlib := goCmd(t, "list", "-f", "{{.Shlib}}", "-buildmode=shared", "-linkshared", "./depBase")
    	AssertIsLinkedTo(t, shlib, soname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/MultiProjectVariantResolutionIntegrationTest.groovy

    Attributes
        - shared = shared-value
        - unique = jar-value
    Artifacts
        - producer-jar.txt
    
    --------------------------------------------------
    Variant javadocElements
    --------------------------------------------------
    
    Capabilities
        - org.test:producer:1.0 (default capability)
    Attributes
        - shared = shared-value
        - unique = javadoc-value
    Artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

            given:
            createLock(Exclusive)
    
            when:
            createLock(Shared)
    
            then:
            thrown(IllegalStateException)
        }
    
        def "cannot lock twice in single process for shared mode"() {
            given:
            createLock(Shared)
    
            when:
            createLock(Shared)
    
            then:
            thrown(IllegalStateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. pkg/volume/util/hostutil/hostutil_linux.go

    // path is shared and bind-mounts it as rshared if needed. mountCmd and
    // mountArgs are expected to contain mount-like command, DoMakeRShared will add
    // '--bind <path> <path>' and '--make-rshared <path>' to mountArgs.
    func DoMakeRShared(path string, mountInfoFilename string) error {
    	shared, err := isShared(path, mountInfoFilename)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.groovy

            debugShared.artifactFile(type: sharedLibraryExtension).assertIsCopyOf(sharedLibrary("build/lib/main/debug/shared/test").file)
            debugShared.artifactFile(type: linkLibrarySuffix).assertIsCopyOf(sharedLibrary("build/lib/main/debug/shared/test").linkFile)
    
            debugShared.parsedPom.scopes.isEmpty()
    
            def debugSharedMetadata = debugShared.parsedModuleMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top