Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 292 for Accessible (0.4 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic.py

      def __init__(self):
        super(TestModule, self).__init__()
        self.v42 = tf.Variable(42.0)
        self.c43 = tf.constant(43.0)
    
      # During serialization, the constants are given internal (non-user-accessible, non-semantically-load-bearing) exported names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
      //
      // Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
      // expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/GroovyRecompilationSpecProvider.java

                .flatMap(sourcePath -> sourceFileClassNameConverter.getClassNames(sourcePath).stream())
                .collect(Collectors.toSet());
            if (!classesWithJavaSource.isEmpty()) {
                // We need to collect just accessible dependents, since it seems
                // private references to classes are not problematic when Groovy compiler loads a class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk9Platform.kt

        // Not supported due to access checks on JDK 9+:
        // java.lang.reflect.InaccessibleObjectException: Unable to make member of class
        // sun.security.ssl.SSLSocketFactoryImpl accessible:  module java.base does not export
        // sun.security.ssl to unnamed module @xxx
        throw UnsupportedOperationException(
          "clientBuilder.sslSocketFactory(SSLSocketFactory) not supported on JDK 8 (>= 252) or JDK 9+",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. cmd/logging.go

    type KMSLogger struct{}
    
    // LogOnceIf is the implementation of LogOnceIf, accessible using the Logger interface
    func (l KMSLogger) LogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, "kms", err, id, errKind...)
    }
    
    // LogIf is the implementation of LogIf, accessible using the Logger interface
    func (l KMSLogger) LogIf(ctx context.Context, err error, errKind ...interface{}) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactRepositoryContainer.java

     * <p>You can obtain a {@code ResolverContainer} instance by calling {@link org.gradle.api.Project#getRepositories()} or
     * using the {@code repositories} property in your build script.</p>
     *
     * <p>The resolvers in a container are accessible as read-only properties of the container, using the name of the
     * resolver as the property name. For example:</p>
     *
     * <pre class='autoTested'>
     * repositories.maven { name 'myResolver' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
      //
      // Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
      // expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. pkg/api/service/util.go

    		}
    	}
    	return ipnets, nil
    }
    
    // ExternallyAccessible checks if service is externally accessible.
    func ExternallyAccessible(service *api.Service) bool {
    	return service.Spec.Type == api.ServiceTypeLoadBalancer ||
    		service.Spec.Type == api.ServiceTypeNodePort ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

            exceptionClass);
        checkArgument(
            hasConstructorUsableByGetChecked(exceptionClass),
            "Futures.getChecked exception type (%s) must be an accessible class with an accessible "
                + "constructor whose parameters (if any) must be of type String and/or Throwable",
            exceptionClass);
      }
    
      private FuturesGetChecked() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

            exceptionClass);
        checkArgument(
            hasConstructorUsableByGetChecked(exceptionClass),
            "Futures.getChecked exception type (%s) must be an accessible class with an accessible "
                + "constructor whose parameters (if any) must be of type String and/or Throwable",
            exceptionClass);
      }
    
      private FuturesGetChecked() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top