Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 912 for regular (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/tensorlist_patterns.td

    //===----------------------------------------------------------------------===//
    // TensorList transformation patterns.
    // Note that the pattern below rewrites `TensorList` tensors  (which has type DT_VARIANT)
    // into regular tensors. We also assume that each element in the `TensorList` has
    // a same constant shape.
    //===----------------------------------------------------------------------===//
    def ConvertTensorListFromTensor : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 16 23:20:46 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. src/html/template/js_test.go

    		{jsCtxRegexp, "return\t"},
    		{jsCtxRegexp, "return\n"},
    		{jsCtxRegexp, "return\u2028"},
    		// Identifiers can be divided and cannot validly be preceded by
    		// a regular expressions. Semicolon insertion cannot happen
    		// between an identifier and a regular expression on a new line
    		// because the one token lookahead for semicolon insertion has
    		// to conclude that it could be a div binary op and treat it as
    		// such.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/IntsMethodsForWeb.java

     * the License.
     */
    
    package com.google.common.primitives;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Holder for web specializations of methods of {@code Ints}. Intended to be empty for regular
     * version.
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 904 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/testdata/dumpscores.go

    	return noninl(-x)
    }
    
    //go:noinline
    func noninl(x int) int {
    	return x + 1
    }
    
    func tooLargeToInline(x int) int {
    	if x > 101 {
    		// Drive up the cost of inlining this func over the
    		// regular threshold.
    		return big(big(big(big(big(G + x)))))
    	}
    	if x < 100 {
    		// make sure this callsite is scored properly
    		G += inlinable(101, inlinable2)
    		if G == 101 {
    			return 0
    		}
    		panic(inlinable2(3))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 14:26:26 UTC 2023
    - 794 bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/DoublesMethodsForWeb.java

     * the License.
     */
    
    package com.google.common.primitives;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Holder for web specializations of methods of {@code Doubles}. Intended to be empty for regular
     * version.
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 910 bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/interpolation/RegexBasedModelInterpolator.java

    import java.util.Properties;
    
    import org.apache.maven.project.path.PathTranslator;
    import org.codehaus.plexus.interpolation.Interpolator;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    
    /**
     * Use a regular expression search to find and resolve expressions within the POM.
     *
     * TODO Consolidate this logic with the PluginParameterExpressionEvaluator, minus deprecations/bans.
     */
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/RegularFileProperty.java

    package org.gradle.api.file;
    
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Provider;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Represents some configurable regular file location, whose value is mutable.
     *
     * <p>
     * You can create a {@link RegularFileProperty} using {@link ObjectFactory#fileProperty()}.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 10 18:00:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/go/parser/error_test.go

    //
    // Expected errors are indicated in the test files by putting a comment
    // of the form /* ERROR "rx" */ immediately following an offending token.
    // The harness will verify that an error matching the regular expression
    // rx is reported at that source position.
    //
    // For instance, the following test file indicates that a "not declared"
    // error should be reported for the undeclared variable x:
    //
    //	package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/snapshot/Snapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot;
    
    /**
     * Snapshot directory or regular file.
     */
    public interface Snapshot {
    
        /**
         * Returns the hash of the snapshot.
         */
        String getHashValue();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 819 bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/util/files/files.go

    )
    
    // FileExists returns true if a regular file exists at `path`, false if `path` does not exist, otherwise an error
    func FileExists(fs utilfs.Filesystem, path string) (bool, error) {
    	if info, err := fs.Stat(path); err == nil {
    		if info.Mode().IsRegular() {
    			return true, nil
    		}
    		return false, fmt.Errorf("expected regular file at %q, but mode is %q", path, info.Mode().String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 01:02:46 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top