Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for read_only (0.19 sec)

  1. android/guava-tests/test/com/google/common/io/PackageSanityTests.java

        setDefault(int.class, 32);
        setDefault(String.class, "abcd");
        setDefault(Method.class, AbstractPackageSanityTests.class.getDeclaredMethods()[0]);
        setDefault(MapMode.class, MapMode.READ_ONLY);
        setDefault(CharsetEncoder.class, Charsets.UTF_8.newEncoder());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/PackageSanityTests.java

        setDefault(int.class, 32);
        setDefault(String.class, "abcd");
        setDefault(Method.class, AbstractPackageSanityTests.class.getDeclaredMethods()[0]);
        setDefault(MapMode.class, MapMode.READ_ONLY);
        setDefault(CharsetEncoder.class, Charsets.UTF_8.newEncoder());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Sep 15 13:47:32 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/variable_info.h

      // by this thread.
      bool shared_lock_held() const { return shared_lock_held_; }
      void set_shared_lock_held() { shared_lock_held_ = true; }
    
      bool read_only() const { return read_only_; }
      void set_read_only() { read_only_ = true; }
    
      const std::optional<ManagedStackTrace>& definition_stack_trace() const {
        return definition_stack_trace_;
      }
    
      ~VariableInfo();
    
     private:
      int index_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

            executer.withGradleUserHomeDir(new File("/gradle-home"))
        }
    
        GradleInContainer bindReadOnly(File local, String containerPath) {
            container.addFileSystemBind(local.absolutePath, containerPath, BindMode.READ_ONLY, SelinuxContext.NONE)
            this
        }
    
        GradleInContainer bindWritable(File local, String containerPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/variable_info_util.h

    //
    // `variables` is allowed to contain instances that don't track a resource
    // variable (i.e. variables[i].var() can be null for some i).
    //
    // If the variable is read_only(), only acquires reader locks.
    Status LockVariables(absl::Span<VariableInfo*> variables)
        TF_EXCLUSIVE_LOCK_FUNCTION();
    Status LockVariables(absl::Span<VariableInfo> variables)
        TF_EXCLUSIVE_LOCK_FUNCTION();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/variable_info_util.cc

          // objects are destroyed.
          // TODO(b/128495870) Add support for passing aliased resource variables.
          return errors::Unimplemented("Duplicate variable passed to XLA cluster");
        }
        if (variables[i]->read_only()) {
          VLOG(4) << "Acquiring reader lock for variable "
                  << reinterpret_cast<void*>(variable);
          mu->lock_shared();
          variables[i]->set_shared_lock_held();
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. pkg/util/labels/.readonly

    Clayton Coleman <******@****.***> 1484861940 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 21:53:18 UTC 2017
    - Viewed (0)
  8. hack/verify-readonly-packages.sh

    # readonly directories were modified. A directory is readonly if it contains a
    # .readonly file. Being readonly DOES NOT apply recursively to subdirectories.
    # Usage: `hack/verify-readonly-packages.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    readonly branch=${1:-${KUBE_VERIFY_GIT_BRANCH:-master}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/ready_only.yaml

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 532 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/ready_only.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top