Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 653 for copied32 (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_save_function_ops_to_main.mlir

        tf_executor.graph {
          tf_executor.fetch
        }
        return
      }
    }
    // Save function should be erased.
    // CHECK-NOT: @tf_quant__save
    
    // Test that the contents of @tf_quant__save are copied to @main.
    // CHECK: func.func @main
    // CHECK-SAME: %[[ARG_0:.*]]: tensor<!tf_type.string> {tf_saved_model.index_path = ["__tf_file_prefix"]}
    // CHECK: tf_executor.graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/net/udpsock.go

    	}
    	return n, addr, err
    }
    
    // ReadMsgUDP reads a message from c, copying the payload into b and
    // the associated out-of-band data into oob. It returns the number of
    // bytes copied into b, the number of bytes copied into oob, the flags
    // that were set on the message and the source address of the message.
    //
    // The packages golang.org/x/net/ipv4 and golang.org/x/net/ipv6 can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/runtime/metrics/sample.go

    // This property includes pointer-typed Values (for example, [Float64Histogram])
    // whose underlying storage will be reused by Read when possible. To safely use
    // such values in a concurrent setting, all data must be deep-copied.
    //
    // It is safe to execute multiple Read calls concurrently, but their arguments
    // must share no underlying memory. When in doubt, create a new []Sample from
    // scratch, which is always safe, though may be inefficient.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. test/noinit.go

    }
    
    var (
    	copy_zero     = zero
    	copy_one      = one
    	copy_pi       = pi
    	copy_slice    = slice
    	copy_sliceInt = sliceInt
    	// copy_hello    = hello // static init of copied strings defeats link -X; see #34675
    
    	// Could be handled without an initialization function, but
    	// requires special handling for "a = []byte("..."); b = a"
    	// which is not a likely case.
    	// copy_bytes = bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/Quantiles.java

         * @param dataset the dataset to do the calculation on, which must be non-empty, which will be
         *     cast to doubles (with any associated lost of precision), and which will not be mutated by
         *     this call (it is copied instead)
         * @return the quantile value
         */
        public double compute(Collection<? extends Number> dataset) {
          return computeInPlace(Doubles.toArray(dataset));
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/ByteStreams.java

          long oldPosition = sourceChannel.position();
          long position = oldPosition;
          long copied;
          do {
            copied = sourceChannel.transferTo(position, ZERO_COPY_CHUNK_SIZE, to);
            position += copied;
            sourceChannel.position(position);
          } while (copied > 0 || position < sourceChannel.size());
          return position - oldPosition;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/helpers.go

    //	    copiedAnnotations = true
    //	  }
    //	  externalObj.Annotations[...] = json.Marshal(...)
    //	}
    func DropRoundTripHorizontalPodAutoscalerAnnotations(in map[string]string) (out map[string]string, copied bool) {
    	_, hasMetricsSpecs := in[MetricSpecsAnnotation]
    	_, hasBehaviorSpecs := in[BehaviorSpecsAnnotation]
    	_, hasMetricsStatuses := in[MetricStatusesAnnotation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

        /**
         * Whether or not the zip entry can safely be read again if any bytes
         * have already been read from it.
         */
        boolean canReopen();
    
        ZipCompressionMethod getCompressionMethod();
    
        // Copied from org.gradle.internal.io.IoFunction in :functional due to
        // JDK version mismatch between the projects
        interface IoFunction<T, R> {
            @Nullable
            R apply(@Nullable T t) throws IOException;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue7921.go

    import "bytes"
    
    // In order to get desired results, we need a combination of
    // both escape analysis and inlining.
    
    func bufferNotEscape() string {
    	// b itself does not escape, only its buf field will be
    	// copied during String() call, but object "handle" itself
    	// can be stack-allocated.
    	var b bytes.Buffer
    	b.WriteString("123")
    	b.Write([]byte{'4'}) // ERROR "\[\]byte{...} does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 19:43:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/DuplicatesStrategy.java

         * <p>
         * If an attempt is made to create a duplicate file/entry during an operation, ignore the item.
         * This will leave the file/entry that was first copied/created in place.
         */
        EXCLUDE,
    
        /**
         * Do not attempt to prevent duplicates, but log a warning message when multiple items
         * are to be created at the same path.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 18 17:47:56 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top