Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for getAlg (0.42 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomScm.java

            return developerConnection;
        }
    
        @Override
        public Property<String> getUrl() {
            return url;
        }
    
        @Override
        public Property<String> getTag() {
            return tag;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ManagedNestedBeanJavaInterOpIntegrationTest.groovy

                    @Nested
                    public abstract Params getParams();
    
                    @TaskAction
                    public void run() {
                        System.out.println("flag = " + getParams().getFlag().get());
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/NestedBeanJavaInterOpIntegrationTest.groovy

                        params = objectFactory.newInstance(Params.class);
                    }
    
                    @TaskAction
                    public void run() {
                        System.out.println("flag = " + getParams().getFlag().get());
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

            given:
            file('src/main/java/Test.java') << """
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    
    public class Test {
        private static final Log logger = LogFactory.getLog(Test.class);
    }
    """
    
            and:
            buildFile << """
    apply plugin: 'java'
    
    ${mavenCentralRepository()}
    
    dependencies {
        compileOnly 'commons-logging:commons-logging:1.2'
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DetachedConfigurationsProvider.java

        @Override
        public int size() {
            return 1;
        }
    
        @Override
        public boolean isFixedSize() {
            return true;
        }
    
        @Override
        public Set<ConfigurationInternal> getAll() {
            return ImmutableSet.of(theOnlyConfiguration);
        }
    
        @Override
        public void visitAll(Consumer<ConfigurationInternal> visitor) {
            visitor.accept(theOnlyConfiguration);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/IvyExcludeRule.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy.internal.dependency;
    
    public interface IvyExcludeRule {
        String getOrg();
        String getModule();
        String getConf();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 777 bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/force_xla_constants_on_host_pass.cc

      auto pflr = std::make_unique<ProcessFunctionLibraryRuntime>(
          nullptr, options.session_options->env, /*config=*/nullptr,
          TF_GRAPH_DEF_VERSION, options.flib_def, opts);
      FunctionLibraryRuntime* flr =
          pflr->GetFLR(ProcessFunctionLibraryRuntime::kDefaultFLRDevice);
    
      for (Node* node : graph->nodes()) {
        if (CanCreateXlaKernel(node->def())) {
          const FunctionBody* fbody = nullptr;
          std::vector<int> constant_arg_indices;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/virtualservice/util.go

    				RouteRule:        "tcp",
    				ServiceIndex:     i,
    				DestinationIndex: j,
    				Destination:      rd.GetDestination(),
    			})
    		}
    	}
    	for i, r := range vs.GetTls() {
    		for j, rd := range r.GetRoute() {
    			destinations = append(destinations, &AnnotatedDestination{
    				RouteRule:        "tls",
    				ServiceIndex:     i,
    				DestinationIndex: j,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventLegacyCrossVersionTest.groovy

            withConnection {
                it.newBuild().forTasks(":a:taskC")
                    .addProgressListener(events, OperationType.BUILD_PHASE)
                    .run()
            }
    
            then:
            events.getAll().isEmpty()
        }
    
        def setupProject() {
            settingsFile << """
                rootProject.name = 'root'
                include 'a'
            """
            file("a/build.gradle") << """
                task taskA {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

                    for (GradleModuleServices services : servicesProviders) {
                        services.registerGlobalServices(registration);
                    }
                }
            });
            ServiceRegistry services = builder.build();
            this.typeSchemes = services.getAll(TypeScheme.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top