Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 218 for Unshare (0.14 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            tmpOutDir.file('products/collaboration.jpg').isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("files/copy")
        def "can share a configuration closure with copy patterns no. 1 with #dsl dsl"() {
            given:
            def dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds('copyAppAssets')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

                }
            """
    
            when:
            succeeds("help")
    
            then:
            outputContains("foo.bar applied")
            outputContains("baz.bar applied")
        }
    
        def "can share precompiled plugin via a jar"() {
            given:
            def pluginJar = packagePrecompiledPlugin("foo.gradle")
    
            when:
            settingsFile << """
                buildscript {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

                group == "pub-group"
                name == "pub-name"
                version == "pub-version"
            }
        }
    
        def "prefers coordinates of publication from dependent project where all publications share coordinates"() {
            def publication = pub('mock', "pub-group", "pub-name", "pub-version")
            def publication2 = pub('pub2', "pub-group", "pub-name", "pub-version")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    --
    
    There are two, complementary, options to share artifacts between projects.
    The <<#sec:simple-sharing-artifacts-between-projects,simplified version>> is only suitable if what you need to share is a simple artifact that doesn't depend on the consumer.
    The simple solution is also limited to cases where this artifact is not published to a repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. src/crypto/ecdh/ecdh_test.go

    			key, err := curve.GenerateKey(rand)
    			if err != nil {
    				b.Fatal(err)
    			}
    			share := key.PublicKey().Bytes()
    			peerPubKey, err := curve.NewPublicKey(peerShare)
    			if err != nil {
    				b.Fatal(err)
    			}
    			secret, err := key.ECDH(peerPubKey)
    			if err != nil {
    				b.Fatal(err)
    			}
    			allocationsSink ^= secret[0] ^ share[0]
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. pkg/kube/kclient/client.go

    // Internally, this uses a shared informer, so calling this multiple times will share the same internals.
    func New[T controllers.ComparableObject](c kube.Client) Client[T] {
    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals. This is keyed on
    // unique {Type,LabelSelector,FieldSelector}.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/os/os_windows_test.go

    		t.Fatal(err)
    	}
    
    	// Per https://learn.microsoft.com/en-us/windows/win32/api/lmshare/ns-lmshare-share_info_2:
    	//
    	// “[The shi2_permissions field] indicates the shared resource's permissions
    	// for servers running with share-level security. A server running user-level
    	// security ignores this member.
    	// …
    	// Note that Windows does not support share-level security.”
    	//
    	// So it shouldn't matter what permissions we set here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

            network stack is offline.
    
      [[3]] "Remote" repositories referenced using the file:// protocol may
            be available. However, if that file:// url references a
            file-share, as in the case of an NFS or SMB mount, that will
            be unavailable.
    
      So, offline mode has several implications, some of which may not be
      altogether obvious:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/index.md

    This is very useful when you need to:
    
    * Have shared logic (the same code logic again and again).
    * Share database connections.
    * Enforce security, authentication, role requirements, etc.
    * And many other things...
    
    All these, while minimizing code repetition.
    
    ## First Steps
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    [[dir:gradle_user_home:multi_version_cache_cleanup]]
    ==== Multiple versions of Gradle sharing a Gradle User Home
    It is common to share a single Gradle User Home between multiple versions of Gradle.
    
    As stated above, caches in Gradle User Home are version-specific.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top