Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,942 for sameId (1.49 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @deprecated Use {@link Named.Namer#INSTANCE} instead (since {@link Configuration} now extends {@link Named}).
         */
        @Deprecated
        class Namer implements org.gradle.api.Namer<Configuration> {
    
            public Namer() {
                DeprecationLogger.deprecateType(Namer.class)
                    .replaceWith("Named.Namer.INSTANCE")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

            task.descendant("Snapshot inputs and outputs before executing task ':custom'")
            task.descendant("Snapshot outputs after executing task ':custom'")
        }
    
        def "task actions implemented in annotated methods are named after the method"() {
            given:
            buildFile << """
            task custom(type: CustomTask)
    
            class CustomTask extends DefaultTask {
                @TaskAction void doSomethingAmazing() { }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/groovy/code-coverage-report/build.gradle

    reporting {
        reports {
            testCodeCoverageReport(JacocoCoverageReport) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.named('check') {
        dependsOn tasks.named('testCodeCoverageReport', JacocoReport) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/groovy/application/build.gradle

    }
    
    dependencies {
        implementation project(':list')
        implementation project(':utilities')
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    }
    
    tasks.named('check') {
        dependsOn tasks.named('testCodeCoverageReport', JacocoReport) // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 363 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

            configurationCacheRun 'myTask'
    
            and: 'convention mapping is ignored just the same'
            configurationCacheRun 'myTask'
        }
    
        def "restores convention mapped task input property explicitly set to null"() {
            given:
            withConventionMappingForPropertyOfType String, '"42"'
            buildFile << '''
                tasks.named("ok") {
                    inputProperty = null
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/registry.go

    type Registry map[string]PluginFactory
    
    // Register adds a new plugin to the registry. If a plugin with the same name
    // exists, it returns an error.
    func (r Registry) Register(name string, factory PluginFactory) error {
    	if _, ok := r[name]; ok {
    		return fmt.Errorf("a plugin named %v already exists", name)
    	}
    	r[name] = factory
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter_test.go

    		}
    
    		if named, _ := obj.Type().(*types.Named); named != nil {
    			verifyInterfaceMethodRecvs(t, named, 0)
    		}
    	}
    }
    
    // verifyInterfaceMethodRecvs verifies that method receiver types
    // are named if the methods belong to a named interface type.
    func verifyInterfaceMethodRecvs(t *testing.T, named *types.Named, level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/struct.go

    		// Fields declared syntactically with the same type (e.g.: a, b, c T)
    		// share the same type expression. Only check type if it's a new type.
    		if i == 0 || f.Type != prev {
    			typ = check.varType(f.Type)
    			prev = f.Type
    		}
    		tag = ""
    		if i < len(e.TagList) {
    			tag = check.tag(e.TagList[i])
    		}
    		if f.Name != nil {
    			// named field
    			add(f.Name, false)
    		} else {
    			// embedded field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors.mlir

      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-SAME: is_mutable
      // CHECK-SAME: }> : () -> ()
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<f32>, value = dense<42.> : tensor<f32> } : () -> ()
    
      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-SAME: is_mutable
      // CHECK-SAME: }> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            val configurations = mock<RoleBasedConfigurationContainerInternal> {
                on { named(any<String>(), any<Class<Configuration>>()) } doReturn apiConfiguration
            }
            val sourceSet = mock<NamedDomainObjectProvider<SourceSet>>()
            val sourceSets = mock<SourceSetContainer> {
                on { named(any<String>(), eq(SourceSet::class.java)) } doReturn sourceSet
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top