Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 283 for INSERTED (0.15 sec)

  1. tensorflow/cc/experimental/libtf/impl/string.cc

    #include "tensorflow/cc/experimental/libtf/impl/string.h"
    
    #include <unordered_set>
    
    // It is important for the container below to not invalidate pointers to
    // elements when elements are inserted, because the String class stores such
    // pointers. This rules out, for example, absl::flat_hash_set.
    using StringTable = std::unordered_set<std::string>;
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/path/UrlNormalizer.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.path;
    
    /**
     * Normalizes a URL to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    public interface UrlNormalizer {
    
        /**
         * Normalizes the specified URL.
         *
         * @param url The URL to normalize, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptSource.java

         */
        String getClassName();
    
        /**
         * Returns the source for this script. Never returns null.
         */
        TextResource getResource();
    
        /**
         * Returns the file name that is inserted into the class during compilation.  For a script with a source
         * file this is the path to the file.  Never returns null.
         */
        String getFileName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 27 05:02:53 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    .token.url {
        color: #67cdcc;
    }
    
    .token.important,
    .token.bold {
        font-weight: bold;
    }
    .token.italic {
        font-style: italic;
    }
    
    .token.entity {
        cursor: help;
    }
    
    .token.inserted {
        color: green;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/compiler_internal.go

    // does not have a name and if the result in the signature also does not have a name,
    // then the signature and field are renamed to
    //
    //	fmt.Sprintf("#rv%d", i+1)`
    //
    // the newly named object is inserted into the signature's scope,
    // and the object and new field name are returned.
    //
    // The intended use for RenameResult is to allow rangefunc to assign results within a closure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. tests/fuzz/kube_crd_fuzzer.go

    	"istio.io/istio/pkg/config/schema/collections"
    )
    
    // FuzzKubeCRD implements a fuzzer that targets
    // the kube CRD in two steps.
    // It first creates an object with a config
    // that has had pseudo-random values inserted.
    // When a valid object has been created, it
    // tries and convert that object. If this
    // conversion fails, it panics.
    func FuzzKubeCRD(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	config := config2.Config{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/isolate-placer.mlir

    // CHECK: [[CALL_RESULT_REG:%.*]], [[CALL_RESULT_REG_control:%.*]] = tf_executor.island wraps "tf.StatefulPartitionedCall"([[IDENTITY_REG]])
    // CHECK-SAME: f = @[[FUNCTION:[a-zA-Z0-9_]*]]
    
    // Match the inserted Identity op for call output.
    // CHECK: "tf.Identity"([[CALL_RESULT_REG]])
    
    // Match the function name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelUrlNormalizer.java

    import org.apache.maven.model.Scm;
    import org.apache.maven.model.Site;
    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    @Named
    @Singleton
    public class DefaultModelUrlNormalizer implements ModelUrlNormalizer {
    
        private final UrlNormalizer urlNormalizer;
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/runtime/pprof/runtime.go

    }
    
    // Do calls f with a copy of the parent context with the
    // given labels added to the parent's label map.
    // Goroutines spawned while executing f will inherit the augmented label-set.
    // Each key/value pair in labels is inserted into the label map in the
    // order provided, overriding any previous value for the same key.
    // The augmented label map will be set for the duration of the call to f
    // and restored once f returns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/arch.go

    type ArchInfo struct {
    	LinkArch *obj.LinkArch
    
    	REGSP     int
    	MAXWIDTH  int64
    	SoftFloat bool
    
    	PadFrame func(int64) int64
    
    	// ZeroRange zeroes a range of memory on stack. It is only inserted
    	// at function entry, and it is ok to clobber registers.
    	ZeroRange func(*objw.Progs, *obj.Prog, int64, int64, *uint32) *obj.Prog
    
    	Ginsnop func(*objw.Progs) *obj.Prog
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top