Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for Decomposes (0.21 sec)

  1. src/database/sql/convert_test.go

    			t.Errorf("test[%d]: got %v, want %v", i, got, tt.want)
    		}
    	}
    }
    
    type dec struct {
    	form        byte
    	neg         bool
    	coefficient [16]byte
    	exponent    int32
    }
    
    func (d dec) Decompose(buf []byte) (form byte, negative bool, coefficient []byte, exponent int32) {
    	coef := make([]byte, 16)
    	copy(coef, d.coefficient[:])
    	return d.form, d.neg, coef, d.exponent
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

         * #queue}, the Executor will complete its tasks, and then restore the interruption. This means
         * that once the Thread returns to the Executor that this Executor composes, the interruption
         * will still be present. If the composed Executor is an ExecutorService, it can respond to
         * shutdown() by returning tasks queued on that Thread after {@link #worker} drains the queue.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

         * #queue}, the Executor will complete its tasks, and then restore the interruption. This means
         * that once the Thread returns to the Executor that this Executor composes, the interruption
         * will still be present. If the composed Executor is an ExecutorService, it can respond to
         * shutdown() by returning tasks queued on that Thread after {@link #worker} drains the queue.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/decompose_reduce_dataset.mlir

    // RUN: tf-opt -tf-decompose-reduce-dataset %s | FileCheck %s
    
    // CHECK-LABEL: func @skip_noncompiled_reduce_dataset
    func.func @skip_noncompiled_reduce_dataset(
          %arg0 : tensor<!tf_type.variant>,
          %arg1: tensor<i64>
        ) {
        // CHECK: tf.ReduceDataset
        %1 = "tf.ReduceDataset"(%arg0, %arg1) {
          Targuments = [],
          Tstate = [i64], device = "",
          f = @__reduce_func_0, f._tf_data_function = true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 18 17:16:34 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/dec.rules

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains rules to decompose builtin compound types
    // (complex,string,slice,interface) into their constituent
    // types.  These rules work together with the decomposeBuiltIn
    // pass which handles phis of these types.
    
    (Store {t} _ _ mem) && t.Size() == 0 => mem
    
    // complex ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/expand_calls.go

    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    	"fmt"
    )
    
    func postExpandCallsDecompose(f *Func) {
    	decomposeUser(f)    // redo user decompose to cleanup after expand calls
    	decomposeBuiltIn(f) // handles both regular decomposition and cleanup.
    }
    
    func expandCalls(f *Func) {
    	// Convert each aggregate arg to a call into "dismantle aggregate, store/pass parts"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

      if (TF_GetCode(status) != TF_OK) return nullptr;
      return TensorHandlePtr(result_handle);
    }
    
    // Create and modify a variable placed on a parallel device which composes
    // `first_device` and `second_device`.
    void BasicTestsForTwoDevices(TFE_Context* context, const char* first_device,
                                 const char* second_device) {
      // Register the custom device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 15:44:44 UTC 2021
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/map.go

    	// Take the properties of the uppercased rune that is already written to the
    	// destination. This saves us the trouble of having to uppercase the
    	// decomposed rune again.
    	if b := norm.NFD.Properties(c.dst[oldPDst:]).Decomposition(); b != nil {
    		// Restore the destination position and process the decomposed rune.
    		r, sz := utf8.DecodeRune(b)
    		if r <= 0xFF { // See A.6.1
    			return true
    		}
    		c.pDst = oldPDst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/iter.go

    		return i.returnSlice(inCopyStart, i.p)
    	} else if inCopyStart < i.p {
    		i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	}
    	return i.buf[:outp]
    doNorm:
    	// Insert what we have decomposed so far in the reorderBuffer.
    	// As we will only reorder, there will always be enough room.
    	i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	i.rb.insertDecomposed(i.buf[0:outp])
    	return doNormDecomposed(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    Composite builds allow you to:
    
    - Extract your build logic from your project build (and re-use it among subprojects)
    - Combine builds that are usually developed independently (such as a plugin and an application)
    - Decompose a large build into smaller, more isolated chunks
    
    == Step 4. Add build to the Build
    
    Let's add a plugin to our build.
    First, create a new directory called `license-plugin` in the `gradle` directory:
    
    [source]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top