Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 690 for Combine (0.21 sec)

  1. tensorflow/cc/experimental/libtf/impl/scalars.h

      T get() const { return value_; }
    
      /** Absl hash function. */
      template <typename H>
      friend H AbslHashValue(H h, const Scalar<T>& x) {
        return H::combine(std::move(h), x.value_);
      }
    
     private:
      const T value_;
    };
    
    template <typename T>
    inline std::ostream& operator<<(std::ostream& o, const Scalar<T>& x) {
      return o << x.get();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

        RepositorySystemSession getRepositorySession();
    
        ProjectBuildingRequest setRepositorySession(RepositorySystemSession repositorySession);
    
        /**
         * Sets the merge mode used to combine repositories declared in the POM with the repositories specified in this
         * request.
         *
         * @param mode The repository merge mode, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformContinuousBuildIntegrationTest.groovy

            then:
            executedAndNotSkipped(":consumer:resolve")
    
            when:
            producerInputFile.text = "changed"
            then:
            // TODO: A build should be triggered, though it isn't since currently combine the secondary inputs into one hash
            //   buildTriggeredAndSucceeded()
            noBuildTriggered()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pkg/test/shell/shell.go

    		cmd = name + " " + cmd
    		scope.Debugf("Executing command: %s", cmd)
    	}
    
    	c := exec.Command(name, args...)
    	c.Env = env
    
    	var b []byte
    	var err error
    	if combinedOutput {
    		// Combine stderr and stdout in b.
    		b, err = c.CombinedOutput()
    	} else {
    		// Just return stdout in b.
    		b, err = c.Output()
    	}
    
    	if err != nil || !c.ProcessState.Success() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/BindingInitializer.java

        }
    
        public Set<Key<?>> getDependencies() {
            return dependencies;
        }
    
        public abstract Consumer<T> compile(Function<Key<?>, Supplier<?>> compiler);
    
        public static <T> BindingInitializer<T> combine(List<BindingInitializer<T>> bindingInitializers) {
            Set<Key<?>> deps = bindingInitializers.stream()
                    .map(BindingInitializer::getDependencies)
                    .flatMap(Collection::stream)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/validatingadmissionpolicystatus.go

    	// KCM won't start the controller without the feature gate set.
    
    	schemaResolver := resolver.NewDefinitionsSchemaResolver(openapi.GetOpenAPIDefinitions, k8sscheme.Scheme, apiextensionsscheme.Scheme).
    		Combine(&resolver.ClientDiscoveryResolver{Discovery: controllerContext.ClientBuilder.DiscoveryClientOrDie(names.ValidatingAdmissionPolicyStatusController)})
    
    	typeChecker := &pluginvalidatingadmissionpolicy.TypeChecker{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    // limitations under the License.
    
    [[rich-version-constraints]]
    = Declaring Rich Versions
    
    Gradle supports a rich model for declaring versions, which allows to combine different level of version information.
    The terms and their meaning are explained below, from the strongest to the weakest:
    
    [[sec:strict-version]]
    `strictly`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/gradients/nn_grad_test.cc

    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*use_function*/ ::testing::Values(true, false)));
    #else
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/and.go

    package lifecycle
    
    import (
    	"encoding/xml"
    )
    
    var errDuplicateTagKey = Errorf("Duplicate Tag Keys are not allowed")
    
    // And - a tag to combine a prefix and multiple tags for lifecycle configuration rule.
    type And struct {
    	XMLName               xml.Name `xml:"And"`
    	ObjectSizeGreaterThan int64    `xml:"ObjectSizeGreaterThan,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzer_test.go

    	a3 := &analyzer{name: "a3", inputs: []config.GroupVersionKind{col3.GroupVersionKind()}}
    	a4 := &analyzer{name: "a4", inputs: []config.GroupVersionKind{col4.GroupVersionKind()}}
    
    	a := Combine("combined", a1, a2, a3, a4)
    	g.Expect(a.Metadata().Inputs).To(ConsistOf(col1.GroupVersionKind(), col2.GroupVersionKind(), col3.GroupVersionKind(), col4.GroupVersionKind()))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top