Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 610 for shared (0.12 sec)

  1. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.TestBuildCache
    import org.gradle.util.internal.TextUtil
    import spock.lang.Shared
    
    class BuildCacheBuildOperationsIntegrationTest extends AbstractIntegrationSpec {
    
        @Shared
        String remoteCacheClass = "RemoteBuildCache"
    
        def operations = new BuildOperationsFixture(executer, testDirectoryProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

      @get:JvmName("maxAgeSeconds") val maxAgeSeconds: Int,
      /**
       * The "s-maxage" directive is the max age for shared caches. Not to be confused with "max-age"
       * for non-shared caches, As in Firefox and Chrome, this directive is not honored by this cache.
       */
      @get:JvmName("sMaxAgeSeconds") val sMaxAgeSeconds: Int,
      val isPrivate: Boolean,
      val isPublic: Boolean,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/obj.go

    		// MOVV $sym+<off>, Rx becomes MOVV sym@GOT, Rx; ADD <off>, Rx
    		if p.As != AMOVV {
    			ctxt.Diag("do not know how to handle TYPE_ADDR in %v with -shared", p)
    		}
    		if p.To.Type != obj.TYPE_REG {
    			ctxt.Diag("do not know how to handle LEAQ-type insn to non-register in %v with -shared", p)
    		}
    		p.From.Type = obj.TYPE_MEM
    		p.From.Name = obj.NAME_GOTREF
    		if p.From.Offset != 0 {
    			q := obj.Appendp(p, newprog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

     * `linkDebug` and `linkRelease` tasks that link the compiled Swift object files into an executable for applications or shared library for libraries with shared linkage for the debug and release build types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    	}
    
    	return dk
    }
    
    // Encapsulate generates a shared key and an associated ciphertext from an
    // encapsulation key, drawing random bytes from crypto/rand.
    // If the encapsulation key is not valid, Encapsulate returns an error.
    //
    // The shared key must be kept secret.
    func Encapsulate(encapsulationKey []byte) (ciphertext, sharedKey []byte, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller.go

    	// NewEndpointController.
    	serviceLister corelisters.ServiceLister
    	// servicesSynced returns true if the service shared informer has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the shared informer passed to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            testFile("settings.gradle").writelns(
                "include 'child1', 'child2'",
                "project(':child1').projectDir = new File(settingsDir, 'shared')",
                "project(':child2').projectDir = new File(settingsDir, 'shared')"
            );
            testFile("shared/build.gradle").write("task('do-stuff')");
    
            inTestDirectory().withTasks("do-stuff").run().assertTasksExecuted(":child1:do-stuff", ":child2:do-stuff");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	{78, "EREMCHG", "remote address changed"},
    	{79, "ELIBACC", "can not access a needed shared library"},
    	{80, "ELIBBAD", "accessing a corrupted shared library"},
    	{81, "ELIBSCN", ".lib section in a.out corrupted"},
    	{82, "ELIBMAX", "attempting to link in too many shared libraries"},
    	{83, "ELIBEXEC", "cannot exec a shared library directly"},
    	{84, "EILSEQ", "invalid or incomplete multibyte or wide character"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    		flags has a similar effect.
    	-ldflags '[pattern=]arg list'
    		arguments to pass on each go tool link invocation.
    	-linkshared
    		build code that will be linked against shared libraries previously
    		created with -buildmode=shared.
    	-mod mode
    		module download mode to use: readonly, vendor, or mod.
    		By default, if a vendor directory is present and the go version in go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

    import org.gradle.internal.component.external.model.DefaultModuleComponentSelector
    import org.gradle.internal.rules.NoInputsRuleAction
    import org.gradle.util.TestUtil
    import org.gradle.vcs.internal.VcsResolver
    import spock.lang.Shared
    import spock.lang.Specification
    
    import java.util.concurrent.TimeUnit
    
    import static org.gradle.api.internal.artifacts.DefaultModuleVersionSelector.newSelector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top