Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 214 for descendents (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleExtractorUtils.java

            ModelRegistry registry = context.getRegistry();
            switch (ruleApplicationScope) {
                case SELF:
                    registry.configure(role, action);
                    break;
                case DESCENDANTS:
                    registry.configureMatching(new NonReferenceDescendantsSpec(context.getScope()), role, action);
                    break;
                default:
                    throw new AssertionError();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.dependents.DependentComponentsReport.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            run "app:${language.compileTaskName}", "-x", "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
            app.recompiledClasses("C")
        }
    
        def "deletion of jar without dependents does not recompile any classes"() {
            source api: ["class A {}"], impl: ["class SomeImpl {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            clearImplProjectDependencies()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. src/net/sockopt_bsd.go

    	if err := syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1); err != nil {
    		return os.NewSyscallError("setsockopt", err)
    	}
    	// Allow reuse of recently-used ports.
    	// This option is supported only in descendants of 4.4BSD,
    	// to make an effective multicast application that requires
    	// quick draw possible.
    	return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEPORT, 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            }
    
            then:
            events.assertIsABuild()
    
            def buildSrc = events.operation("Build buildSrc")
            def groovyPlugin = buildSrc.descendant("Apply plugin org.gradle.api.plugins.GroovyPlugin to project ':buildSrc'")
    
            buildSrc.descendant("Apply plugin org.gradle.api.plugins.JavaLibraryPlugin to project ':buildSrc'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            then: "The filtered tree uses the cached state"
            relativePaths as Set == ["d1", "d1/f1", "f1"] as Set
        }
    
        def "reuses cached descendant tree on read"() {
            given:
            def parentDir = temporaryFolder.createDir("parent")
            def childDir = parentDir.createDir("child")
            childDir.file("file.txt").createFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util_test.cc

      mlir::tf_device::ClusterOp cluster;
      std::string device = "/job:localhost/replica:0/task:0/device:CPU:0";
      module->walk(
          [&](mlir::tf_device::ClusterOp descendant) { cluster = descendant; });
      mlir::OpBuilder builder(&context);
      auto loc = cluster->getLoc();
    
      // Wrap the cluster op into a Launch op
      auto launch_op = tensorflow::WrapOpInLaunch(&builder, loc, cluster, device);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/dump_test.go

    					UID: types.UID("bravo"),
    				},
    			},
    			dependents: map[*node]struct{}{
    				alphaNode(): {},
    			},
    		}
    	}
    	charlieNode = func() *node {
    		return &node{
    			identity: objectReference{
    				OwnerReference: metav1.OwnerReference{
    					UID: types.UID("charlie"),
    				},
    			},
    			dependents: map[*node]struct{}{
    				alphaNode(): {},
    			},
    		}
    	}
    	deltaNode = func() *node {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @NonNullApi
    package org.gradle.api.reporting.dependents.internal;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 718 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/GradleProject.java

        /**
         * Returns the path of this project. This is a unique identifier for this project within the build.
         *
         * @return The path.
         */
        String getPath();
    
        /**
         * Searches all descendants (children, grand-children, etc.), including self, by given path.
         *
         * @return Gradle project with matching path or {@code null} if not found.
         */
        @Nullable
        GradleProject findByPath(String path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top