Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 751 for Combine (0.37 sec)

  1. 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)
  2. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

          .body(RealResponseBody(contentType, contentLength, cacheWritingSource.buffer()))
          .build()
      }
    
      companion object {
        /** Combines cached headers with a network headers as defined by RFC 7234, 4.3.4. */
        private fun combine(
          cachedHeaders: Headers,
          networkHeaders: Headers,
        ): Headers {
          val result = Headers.Builder()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/serialize_mlir_module_utils.cc

      // Parse the module.
      *mlir_module = mlir::parseSourceString<mlir::ModuleOp>(serialized_mlir_module,
                                                             mlir_context);
      if (!*mlir_module)
        return error_handler.Combine(
            errors::InvalidArgument("could not parse MLIR module"));
    
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

         */
        boolean isIntermediate ();
    
    
        /**
         * @param next
         * @return new referral, combining a chain of referrals
         */
        DfsReferralDataInternal combine ( DfsReferralData next );
    
    
        /**
         * @param dr
         */
        void append ( DfsReferralDataInternal dr );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java

            this.scopes = new HashSet<>();
    
            addScopes(scopes);
        }
    
        /**
         * Creates a new filter that combines the specified filters.
         *
         * @param filters The filters to combine, may be {@code null}.
         */
        public CumulativeScopeArtifactFilter(CumulativeScopeArtifactFilter... filters) {
            this.scopes = new HashSet<>();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. internal/bucket/replication/and.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package replication
    
    import (
    	"encoding/xml"
    )
    
    // And - a tag to combine a prefix and multiple tags for replication configuration rule.
    type And struct {
    	XMLName xml.Name `xml:"And" json:"And"`
    	Prefix  string   `xml:"Prefix,omitempty" json:"Prefix,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/covdata/merge.go

    	"os"
    )
    
    var outdirflag *string
    var pcombineflag *bool
    
    func makeMergeOp() covOperation {
    	outdirflag = flag.String("o", "", "Output directory to write")
    	pcombineflag = flag.Bool("pcombine", false, "Combine profiles derived from distinct program executables")
    	m := &mstate{
    		mm: newMetaMerge(),
    	}
    	return m
    }
    
    // mstate encapsulates state and provides methods for implementing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/while_gradients.cc

      TF_RETURN_IF_ERROR(AddForwardLoopCounter(
          while_ctx, scope.NewSubScope("ForwardLoopCounter"), &forward_loop_count));
    
      // TODO(skyewm): can we combine the backprop loop counter and main gradient
      // loop into a single loop? The original Python code doesn't combine the
      // loops, but I'm not sure why.
      Output backprop_counter_cond;
      TF_RETURN_IF_ERROR(AddBackPropLoopCounter(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_notall.txt

    # This test demonstrates go commands that combine the 'all' pattern
    # with packages outside of 'all'.
    
    # With -deps, 'all' should include test dependencies of packages in the main
    # module, but not should not include test dependencies of packages imported only
    # by other root patterns.
    
    env GOFLAGS=-mod=mod
    cp go.mod go.mod.orig
    
    go list -deps all x/otherroot
    
    stdout '^x/inall$'
    stdout '^x/inall/fromtest$'
    stdout '^x/inall/fromtestinall$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

      <version>1.0</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-2591</name>
      <description>
        Test aggregation of list configuration items for build plugins when using
        'combine.children=append' attribute.
      </description>
    
      <modules>
        <module>subproject</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top