Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 7,138 for sameId (0.22 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RootComponentResolutionIntegrationTest.groovy

            buildFile << """
                buildscript {
                    configurations {
                        conf {
                            canBeConsumed = false
                            attributes {
                                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, "foo"))
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 22:33:17 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/buildSrc/src/main/kotlin/com/acme/InstrumentedJarsPlugin.kt

                isCanBeResolved = false
                attributes {
                    attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
                    attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
                    attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
                    attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, JavaVersion.current().majorVersionNumber)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPluginExtension.java

                    // This makes the task cacheable even if multiple JVMs write to same destination file, e.g. when executing tests in parallel.
                    // The JaCoCo agent supports writing in parallel to the same file, see https://github.com/jacoco/jacoco/pull/52.
                    File coverageFile = destinationFile.getOrNull();
                    if (coverageFile == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. pkg/kube/krt/helpers.go

    }
    
    // Named is a convenience struct. It is ideal to be embedded into a type that has a name and namespace,
    // and will automatically implement the various interfaces to return the name, namespace, and a key based on these two.
    type Named struct {
    	Name, Namespace string
    }
    
    // NewNamed builds a Named object from a Kubernetes object type.
    func NewNamed(o metav1.Object) Named {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

                    Queue<String> queue = new LinkedList<>(MinimalCollection.of(elements));
                    return Collections.checkedQueue(queue, String.class);
                  }
                })
            .named("checkedQueue/LinkedList")
            .withFeatures(
                CollectionFeature.GENERAL_PURPOSE,
                CollectionFeature.ALLOWS_NULL_VALUES,
                CollectionFeature.KNOWN_ORDER,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 9.4K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(elements))
                attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(bundling))
            }
            isCanBeResolved = false
            isCanBeConsumed = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    			if r := find(obj, T, path, nil); r != nil {
    				return Path(r), nil
    			}
    		} else {
    			if named, _ := T.(*types.Named); named != nil {
    				if r := findTypeParam(obj, named.TypeParams(), path, nil); r != nil {
    					// generic named type
    					return Path(r), nil
    				}
    			}
    			// defined (named) type
    			if r := find(obj, T.Underlying(), append(path, opUnderlying), nil); r != nil {
    				return Path(r), nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/README

    and then run go commands as usual.
    
    Modules saved to this directory should be small: a few kilobytes at most.
    It is acceptable to edit the archives created by addmod.go to remove
    or shorten files. It is also acceptable to write module archives by hand: 
    they need not be backed by some public git repo.
    
    Each module archive is named path_vers.txt, where slashes in path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/validtype.go

    // struct named S which contains a field of named type F contains (the memory
    // of) F in S, leading to the nest S->F. If a type appears in its own nest
    // (say S->F->S) we have an invalid recursive type. The path list is the full
    // path of named types in a cycle, it is only needed for error reporting.
    func (check *Checker) validType0(pos syntax.Pos, typ Type, nest, path []*Named) bool {
    	typ = Unalias(typ)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/go/types/validtype.go

    // struct named S which contains a field of named type F contains (the memory
    // of) F in S, leading to the nest S->F. If a type appears in its own nest
    // (say S->F->S) we have an invalid recursive type. The path list is the full
    // path of named types in a cycle, it is only needed for error reporting.
    func (check *Checker) validType0(pos token.Pos, typ Type, nest, path []*Named) bool {
    	typ = Unalias(typ)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top