Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 150 for strref (0.07 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/LocalBuildCacheServiceHandle.java

        boolean canStore();
    
        /**
         * Stores the file to the local cache.
         *
         * If canStore() returns false, then this method will do nothing and will return false.
         *
         * Returns true if store was completed.
         */
        boolean maybeStore(BuildCacheKey key, File file);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 16:23:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/low_bit_utils.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_UTILS_LOW_BIT_UTILS_H_
    
    #include <cstdint>
    #include <vector>
    
    namespace tflite {
    // Assumes that `src_tensor` is a buffer where each element is a 4-bit value
    // stored in 8-bit.
    // Returns a new buffer that is packed densely with 2 4-bit values in a byte.
    // The packing format is low-bits-first, i.e. the lower nibble of a byte is
    // filled first, followed by the upper nibble.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 12 20:13:51 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/loader.h

    /// Loads a SavedModel from the specified export directory. The MetaGraphDef
    /// to be loaded is identified by the supplied tags, corresponding exactly to
    /// the set of tags used at SavedModel build time. Stores a SavedModel bundle in
    /// *bundle with a session and the requested MetaGraphDef, if found.
    ///
    /// NOTE: Prefer the overload that takes a SavedModelBundleLite* in new code.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/HashingClassLoaderFactory.java

    package org.gradle.internal.classloader;
    
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ClassLoaderFactory} that also stores the hash of each created classloader which is later retrievable via {@link #getClassLoaderClasspathHash(ClassLoader)}.
     */
    public interface HashingClassLoaderFactory extends ClassLoaderFactory {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSettings.java

     * limitations under the License.
     */
    package org.gradle.security.internal.gnupg;
    
    import org.gradle.internal.os.OperatingSystem;
    
    import java.io.File;
    
    /**
     * Stores the settings for invoking gnupg.
     *
     * @since 4.5
     */
    public class GnupgSettings {
    
        private String executable;
        private File homeDir;
        private File optionsFile;
        private String keyName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/types.go

    	SetCgroupConfig(name CgroupName, resource v1.ResourceName, resourceConfig *ResourceConfig) error
    }
    
    // QOSContainersInfo stores the names of containers per qos
    type QOSContainersInfo struct {
    	Guaranteed CgroupName
    	BestEffort CgroupName
    	Burstable  CgroupName
    }
    
    // PodContainerManager stores and manages pod level containers
    // The Pod workers interact with the PodContainerManager to create and destroy
    // containers for the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_freebsd_sigaction.c

    // Copyright 2018 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.
    
    //go:build freebsd && amd64
    
    #include <errno.h>
    #include <stddef.h>
    #include <stdint.h>
    #include <string.h>
    #include <signal.h>
    
    #include "libcgo.h"
    
    // go_sigaction_t is a C version of the sigactiont struct from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/IncrementalCompileOptions.java

            this.classfileBackupDir = objectFactory.fileProperty();
            this.publishedCode = objectFactory.fileProperty();
        }
    
        /**
         * Returns the file path where results of code analysis are to be stored.
         */
        @LocalState
        public RegularFileProperty getAnalysisFile() {
            return analysisFile;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/cover.go

    		base.Fatalf("%v", err)
    	}
    	_, err = fmt.Fprintf(f, "mode: %s\n", cfg.BuildCoverMode)
    	if err != nil {
    		base.Fatalf("%v", err)
    	}
    	coverMerge.f = f
    }
    
    // mergeCoverProfile merges file into the profile stored in testCoverProfile.
    // It prints any errors it encounters to ew.
    func mergeCoverProfile(ew io.Writer, file string) {
    	if coverMerge.f == nil {
    		return
    	}
    	coverMerge.Lock()
    	defer coverMerge.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_loong64.go

    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    
    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top