Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for visibility (0.15 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypesTest.java

    import com.google.common.collect.Lists;
    import com.google.common.testing.EqualsTester;
    import com.google.common.testing.NullPointerTester;
    import com.google.common.testing.NullPointerTester.Visibility;
    import com.google.common.testing.SerializableTester;
    import java.lang.reflect.GenericArrayType;
    import java.lang.reflect.GenericDeclaration;
    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/TypesTest.java

    import com.google.common.collect.Lists;
    import com.google.common.testing.EqualsTester;
    import com.google.common.testing.NullPointerTester;
    import com.google.common.testing.NullPointerTester.Visibility;
    import com.google.common.testing.SerializableTester;
    import java.lang.reflect.GenericArrayType;
    import java.lang.reflect.GenericDeclaration;
    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/kube-addons.sh

          return 0;
      if echo "${kubectl_output}" | grep --silent "no objects"; then
        # Nothing to do.
        return 0;
      fi
      echo "${kubectl_output}" # for visibility of errors
      return 1;
    }
    
    # Creates resources with addon mode EnsureExists for create_resource_from_string.
    # Does not perform pruning.
    # $1 string with json or yaml.
    # $2 name of this object for logging
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

                .publish()
    
            ivyRepo.module('ivy.configuration', 'projectB', '1.5')
                .configuration('child')
                .configuration('private', visibility: 'private')
                .artifact()
                .artifact([name: 'projectB', conf: 'runtime'])
                .artifact([name: 'projectB-child', conf: 'child'])
                .artifact([name: 'projectB-private', conf: 'private'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

        }
    
        def "pessimistic structure has parent visibility"() {
            expect:
            scope.localClassLoader.getResource("root").text == "root"
        }
    
        def "optimised structure has parent visibility"() {
            expect:
            scope.lock().localClassLoader.getResource("root").text == "root"
        }
    
        def "manages cache"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

                .setDefault(int.class, 1)
                .setDefault(double.class, 1.0d);
        tester.testStaticMethods(RateLimiter.class, Visibility.PACKAGE);
        tester.testInstanceMethods(RateLimiter.create(5.0, stopwatch), Visibility.PACKAGE);
      }
    
      public void testVerySmallDoubleValues() throws Exception {
        RateLimiter rateLimiter = RateLimiter.create(Double.MIN_VALUE, stopwatch);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

                .setDefault(int.class, 1)
                .setDefault(double.class, 1.0d);
        tester.testStaticMethods(RateLimiter.class, Visibility.PACKAGE);
        tester.testInstanceMethods(RateLimiter.create(5.0, stopwatch), Visibility.PACKAGE);
      }
    
      public void testVerySmallDoubleValues() throws Exception {
        RateLimiter rateLimiter = RateLimiter.create(Double.MIN_VALUE, stopwatch);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/service_test.go

    	fuzz "github.com/google/gofuzz"
    
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestGetByPort(t *testing.T) {
    	ports := PortList{{
    		Name: "http",
    		Port: 80,
    	}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Suppliers.java

      static class MemoizingSupplier<T extends @Nullable Object> implements Supplier<T>, Serializable {
        final Supplier<T> delegate;
        transient volatile boolean initialized;
        // "value" does not need to be volatile; visibility piggy-backs
        // on volatile read of "initialized".
        @CheckForNull transient T value;
    
        MemoizingSupplier(Supplier<T> delegate) {
          this.delegate = checkNotNull(delegate);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/BUILD

            "@local_tsl//tsl/platform:status",
        ],
    )
    
    cc_library(
        name = "mlir_bridge_pass_util",
        srcs = ["mlir_bridge_pass_util.cc"],
        hdrs = ["mlir_bridge_pass_util.h"],
        visibility = ["//tensorflow/compiler/tf2xla:__pkg__"],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/tf2xla:tf2xla_defs",
            "//tensorflow/core:core_cpu_base",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top