Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 7,138 for sameId (0.24 sec)

  1. src/go/types/decl.go

    }
    
    // isImportedConstraint reports whether typ is an imported type constraint.
    func (check *Checker) isImportedConstraint(typ Type) bool {
    	named := asNamed(typ)
    	if named == nil || named.obj.pkg == check.pkg || named.obj.pkg == nil {
    		return false
    	}
    	u, _ := named.under().(*Interface)
    	return u != nil && !u.IsMethodSet()
    }
    
    func (check *Checker) typeDecl(obj *TypeName, tdecl *ast.TypeSpec, def *TypeName) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_quantizable_spots_as_functions_xla_selective_quantization.mlir

      }
    }
    
    // CHECK-LABEL: func @conv2d_unmatching_unit
    // CHECK: "tf.PartitionedCall"
    // CHECK-SAME: f = @composite_conv2d_fn_1
    // Check that the `_tfl_quant_trait` attribute exists since the unit is not in `unit_wise_quantization_specs`.
    // CHECK-SAME: _tfl_quant_trait = "fully_quantizable"
    // CHECK-SAME: loc(callsite("Model/conv2d@conv2d_unmatching_unit"("Conv2D") at "QuantizationUnit({{.*}})"))
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                class NamedThing implements Named {
                    final String name
                    NamedThing(String name) {
                        this.name = name
                    }
                }
    
                def container = project.objects.polymorphicDomainObjectContainer(Named)
                container.registerBinding(Named, NamedThing)
                container.register("a", Named) { }
                container.register("b", Named) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. src/runtime/libfuzzer_amd64.s

    // work
    // libFuzzer's compare hooks obtain the caller's address from the compiler
    // builtin __builtin_return_address. Since we invoke the hooks always
    // from the same native function, this builtin would always return the same
    // value. Internally, the libFuzzer hooks call through to the always inlined
    // HandleCmp and thus can't be mimicked without patching libFuzzer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                new TestStringSetGenerator() {
                  @Override
                  public Set<String> create(String[] elements) {
                    return Collections.emptySet();
                  }
                })
            .named("emptySet")
            .withFeatures(CollectionFeature.SERIALIZABLE, CollectionSize.ZERO)
            .suppressing(suppressForEmptySet())
            .createTestSuite();
      }
    
      public Test testsForSingletonSet() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/groovy/producer/build.gradle

            canBeConsumed = true
            canBeResolved = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.LIBRARY))
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
                attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling, 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
    - 1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            when:
            container.register("someObj")
            container.register("otherObj") {
                prop = 'value'
            }
            def someObj = container.named("someObj")
            def otherObj = container.named("otherObj")
            then:
            someObj.present
            otherObj.get().prop == 'value'
        }
    
        def "propagates nested MissingMethodException"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  8. test/nosplit.go

    start 136 nosplit call f; f 0 nosplit; REJECT
    
    # Calling a splitting function from a nosplit function requires
    # having room for the saved caller PC of the call but also the
    # saved caller PC for the call to morestack.
    # Architectures differ in the same way as before.
    start 96 nosplit call f; f 0 call f
    start 100 nosplit call f; f 0 call f; REJECT ppc64 ppc64le
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. test/func3.go

    // Does not compile.
    
    package main
    
    type t1 int
    type t2 int
    type t3 int
    
    func f1(*t2, x t3)	// ERROR "named"
    func f2(t1, *t2, x t3)	// ERROR "named"
    func f3() (x int, *string)	// ERROR "named"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 505 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedContainersDslTest.kt

                    extendsFrom(bazar)
                }
    
                val cabin: NamedDomainObjectProvider<Configuration> = configurations.named("cabin")
                val castle: NamedDomainObjectProvider<Configuration> = configurations.named("castle") {
                    extendsFrom(cabin.get())
                }
    
                val valley: NamedDomainObjectProvider<Configuration> = configurations.register("valley")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top