Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 170 for addLink (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/DefaultGradleApiSpecProvider.java

            );
        }
    
        @Override
        public Set<String> getExportedPackages() {
            return ImmutableSet.of(
                //"org.gradle.internal.declarativedsl", // TODO: adding this makes all integration tests fail
                "org.gradle",
                "org.apache.tools.ant",
                "groovy",
                "org.apache.groovy",
                "org.codehaus.groovy",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 08:55:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/README.md

    ```sh
    go test k8s.io/api -run //HEAD
    ```
    
    All three formats of a given group/version/kind are expected to decode successfully to identical objects,
    and to round-trip back to serialized form with identical bytes.
    Adding new fields or API types *is* expected to modify these fixtures. To regenerate them, run:
    
    ```sh
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -run //HEAD
    ```
    
    ## Previous versions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ScopedServiceRegistryTest extends Specification {
    
        def "fails when registering a service by adding #method in a wrong scope"() {
            given:
            def registry = scopedRegistry(Scope.Build)
    
            when:
            registration(registry)
    
            then:
            def exception = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

        // TODO(b/184420848): We may not need to skip aliasing for entire function
        // in case of multiple assigns.
        if (alias_info.output_index != kUnassigned) {
          LLVM_DEBUG(llvm::dbgs()
                     << "Skip adding aliasing information because of multiple "
                        "assigns to "
                        "the same resource from tf_device.cluster_func outputs. "
                        "This can "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    }
    
    // addNewGodebug adds a new godebug key=value line at the end
    // of the last godebug block, regardless of any existing godebug lines for key.
    func (f *WorkFile) addNewGodebug(key, value string) {
    	line := f.Syntax.addLine(nil, "godebug", key+"="+value)
    	g := &Godebug{
    		Key:    key,
    		Value:  value,
    		Syntax: line,
    	}
    	f.Godebug = append(f.Godebug, g)
    }
    
    func (f *WorkFile) DropGodebug(key string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pilot/pkg/controllers/untaint/nodeuntainter.go

    	// remove the taints from readyCniNodes
    	readyCniNodes.Register(func(o krt.Event[v1.Node]) {
    		if o.Event == controllers.EventDelete {
    			return
    		}
    		if o.New != nil {
    			log.Debugf("adding node to queue event: %s", o.New.Name)
    			n.queue.AddObject(o.New)
    		}
    	})
    }
    
    func (n *NodeUntainter) HasSynced() bool {
    	return n.queue.HasSynced()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginArtifactRepositories.java

        public DefaultPluginArtifactRepositories(Factory<DependencyResolutionServices> factory, RepositoryHandlerInternal sharedRepositories) {
            // Create a copy of the shared repository container, so that mutations (eg adding the portal repo) are not reflected in the shared container
            dependencyResolutionServices = factory.create();
            this.sharedRepositories = sharedRepositories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ResolutionFailureDescriber.java

    import java.util.Optional;
    
    /**
     * Describe a certain type of resolution failure, by providing concise and specific human-readable
     * information to the message of the resulting exception, and also adding resolution suggestions if possible.
     *
     * @param <FAILURE> the type of failure that this describer can describe
     */
    public interface ResolutionFailureDescriber<FAILURE extends ResolutionFailure> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

            }
            return displayName
        }
    
        Collection<BaselineVersion> getBaselineVersions() {
            return baselineVersions.values()
        }
    
        /**
         * Locates the given baseline version, adding it if not present.
         */
        BaselineVersion baseline(String version) {
            def baselineVersion = baselineVersions[version]
            if (baselineVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyConstraintSet.java

                );
            }
            return addInternalDependencyConstraint(dependencyConstraint);
        }
    
        // For internal use only, allows adding a dependency constraint without issuing a deprecation warning
        public boolean addInternalDependencyConstraint(DependencyConstraint dependencyConstraint) {
            return super.add(dependencyConstraint);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:26:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top