Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 705 for Remotes (0.11 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

        def setup() {
            requireOwnGradleUserHomeDir()
        }
    
        @Rule
        ProgressLoggingFixture progressLogger = new ProgressLoggingFixture(executer, temporaryFolder)
    
        void "can resolve dependencies from a remote Ivy repository with #layout layout"() {
            given:
            def remoteIvyRepo = server.getRemoteIvyRepo(m2Compatible, null, ivyFilePattern, artifactFilePattern)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/go.go

    				break
    			}
    
    			local := f[1]
    			remote := local
    			if len(f) > 2 {
    				remote = f[2]
    			}
    			lib := ""
    			if len(f) > 3 {
    				lib = f[3]
    			}
    
    			if *FlagD {
    				fmt.Fprintf(os.Stderr, "%s: %s: cannot use dynamic imports with -d flag\n", os.Args[0], file)
    				nerrors++
    				return
    			}
    
    			if local == "_" && remote == "_" {
    				// allow #pragma dynimport _ _ "foo.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    //
    // The pattern syntax selecting a change is a sequence of bit strings
    // separated by + and - operators. Each bit string denotes the set of
    // changes with IDs ending in those bits, + is set addition, - is set subtraction,
    // and the expression is evaluated in the usual left-to-right order.
    // The special binary number “y” denotes the set of all changes,
    // standing in for the empty bit string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. cmd/storage-datatypes.go

    	// TransitionedObjName is the object name on the remote tier corresponding
    	// to object (version) on the source tier.
    	TransitionedObjName string `msg:"to"`
    	// TransitionTier is the storage class label assigned to remote tier.
    	TransitionTier string `msg:"tt"`
    	// TransitionVersionID stores a version ID of the object associate
    	// with the remote tier.
    	TransitionVersionID string `msg:"tv"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolverTest.groovy

                assert graphState.repositoryName == repo.name
            }
    
            and:
            0 * localAccess._
            0 * remoteAccess._
            0 * result._
        }
    
        def "attempts to find remote dependency when local dependency is unknown"() {
            given:
            def repo = addRepo1()
    
            when:
            resolver.resolve(moduleComponentId, componentRequestMetaData, result)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. pkg/kubelet/config/config.go

    	seenBefore := s.sourcesSeen.Has(source)
    	adds, updates, deletes, removes, reconciles := s.merge(source, change)
    	firstSet := !seenBefore && s.sourcesSeen.Has(source)
    
    	// deliver update notifications
    	switch s.mode {
    	case PodConfigNotificationIncremental:
    		if len(removes.Pods) > 0 {
    			s.updates <- *removes
    		}
    		if len(adds.Pods) > 0 {
    			s.updates <- *adds
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    // 1. Expiry of objects, includes regular and transitioned objects
    // 2. Expiry of noncurrent versions due to NewerNoncurrentVersions
    // 3. Expiry of free-versions, for remote objects of transitioned object which have been expired since.
    // 4. Expiry of remote objects corresponding to objects in a
    // non-versioned/version suspended buckets
    func (es *expiryState) Worker(input <-chan expiryOp) {
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.inet;
    
    import com.google.common.base.Objects;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.io.BufferCaster;
    import org.gradle.internal.remote.internal.MessageIOException;
    import org.gradle.internal.remote.internal.MessageSerializer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pkg/wasm/imagefetcher.go

    		// so must set the envvar when reaching this branch is expected.
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(authn.DefaultKeychain))
    	} else {
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(&wasmKeyChain{data: opt.PullSecret}))
    	}
    
    	if opt.Insecure {
    		t := remote.DefaultTransport.(*http.Transport).Clone()
    		// nolint: gosec
    		// This is only when a user explicitly sets a flag to enable insecure mode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataJsonWriter.java

                        ModuleMetadataSpec.RemoteVariant remote = (ModuleMetadataSpec.RemoteVariant) variant;
                        writeObject(() -> {
                            write("name", remote.name);
                            writeAttributes(remote.attributes);
                            writeAvailableAt(remote.availableAt);
                            writeCapabilities("capabilities", remote.capabilities);
                        });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top