Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,999 for sameId (0.22 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriber.java

            return attributeValue instanceof Category ? ((Named) attributeValue).getName() : String.valueOf(attributeValue);
        }
    
        /**
         * Checks if two attributes have the same name.
         *
         * @param a first attribute to compare
         * @param b second attribute to compare
         * @return {@code true} if the two attributes have the same name; {@code false} otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/go/types/mono.go

    				do(typ.Field(i).Type())
    			}
    		}
    	}
    	do(targ)
    }
    
    // localNamedVertex returns the index of the vertex representing
    // named, or -1 if named doesn't need representation.
    func (w *monoGraph) localNamedVertex(pkg *Package, named *Named) int {
    	obj := named.Obj()
    	if obj.Pkg() != pkg {
    		return -1 // imported type
    	}
    
    	root := pkg.Scope()
    	if obj.Parent() == root {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    You can have your type implement or extend the link:{javadocPath}/org/gradle/api/Named.html[Named] interface, which defines such a read-only "name" property:
    
    [source,groovy]
    ----
    import org.gradle.api.Named
    
    interface MyType : Named {
        // Other properties and methods...
    }
    
    class MyTypeImpl(override val name: String) : MyType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/TestThread.java

        stop();
        join();
    
        if (uncaughtThrowable != null) {
          throw new AssertionError("Uncaught throwable in " + getName(), uncaughtThrowable);
        }
      }
    
      /**
       * Causes this thread to call the named void method, and asserts that the call returns normally.
       */
      public void callAndAssertReturns(String methodName, Object... arguments) throws Exception {
        checkNotNull(methodName);
        checkNotNull(arguments);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                        }
                    }
                }
                tasks.register("notByRule")
    
                task foo {
                    dependsOn tasks.named("bar")
                    dependsOn tasks.named("baz")
                    dependsOn "notByRule"
                }
    
            """
            expect:
            succeeds("foo")
            result.assertTasksExecuted(":notByRule", ":bar", ":baz", ":foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    
    # 'go install pkg@version' should report an error if the arguments are in
    # different modules.
    ! go install example.com/cmd/a@v1.0.0 rsc.io/fortune@v1.0.0
    stderr '^package rsc.io/fortune provided by module rsc.io/fortune@v1.0.0\n\tAll packages must be provided by the same module \(example.com/cmd@v1.0.0\).$'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.attributes.java;
    
    import org.gradle.api.Named;
    import org.gradle.api.attributes.Attribute;
    
    /**
     * Represents the target JVM environment. Typically, a standard JVM or Android.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

         * computed in the same way, it does not need to be tracked.
         *
         * This is a {@code static} because of how JUnit handles instantiating the test class, to avoid extracting the same
         * jar multiple times per running test class.  We use this set to avoid doing an IO operation to check if the jar has already been extracted,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    func getUseWaypoint(meta metav1.ObjectMeta, defaultNamespace string) (named *krt.Named, isNone bool) {
    	if labelValue, ok := meta.Labels[constants.AmbientUseWaypointLabel]; ok {
    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    		//   a waypoint named "none" cannot be used and will be ignored
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/mono.go

    				do(typ.Field(i).Type())
    			}
    		}
    	}
    	do(targ)
    }
    
    // localNamedVertex returns the index of the vertex representing
    // named, or -1 if named doesn't need representation.
    func (w *monoGraph) localNamedVertex(pkg *Package, named *Named) int {
    	obj := named.Obj()
    	if obj.Pkg() != pkg {
    		return -1 // imported type
    	}
    
    	root := pkg.Scope()
    	if obj.Parent() == root {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top