Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 308 for Accessible (0.14 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

    import org.gradle.internal.file.Chmod;
    import org.gradle.internal.file.FileException;
    import org.gradle.internal.file.Stat;
    
    import java.io.File;
    
    /**
     * A file system accessible to Gradle.
     */
    public interface FileSystem extends Chmod, Stat {
        /**
         * Default Unix permissions for directories, {@code 755}.
         */
        @SuppressWarnings("OctalInteger")
        int DEFAULT_DIR_MODE = 0755;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/database/sql/example_cli_test.go

    	go func() {
    		<-appSignal
    		stop()
    	}()
    
    	Ping(ctx)
    
    	Query(ctx, *id)
    }
    
    // Ping the database to verify DSN provided by the user is valid and the
    // server accessible. If the ping fails exit the program with an error.
    func Ping(ctx context.Context) {
    	ctx, cancel := context.WithTimeout(ctx, 1*time.Second)
    	defer cancel()
    
    	if err := pool.PingContext(ctx); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/FileBackedOutputStream.java

     * the very old Android Ice Cream Sandwich release), then this stream throws an exception instead of
     * creating a file that would be more accessible. (This behavior is new in Guava 32.0.0. Previous
     * versions would create a file that is more accessible, as discussed in <a
     * href="https://github.com/google/guava/issues/2575">Guava issue 2575</a>. TODO: b/283778848 - Fill
     * in CVE number once it's available.)
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/FileBackedOutputStream.java

     * the very old Android Ice Cream Sandwich release), then this stream throws an exception instead of
     * creating a file that would be more accessible. (This behavior is new in Guava 32.0.0. Previous
     * versions would create a file that is more accessible, as discussed in <a
     * href="https://github.com/google/guava/issues/2575">Guava issue 2575</a>. TODO: b/283778848 - Fill
     * in CVE number once it's available.)
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.status.yaml.golden

        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: backendRef echo/default not accessible to a TCPRoute in namespace "istio-system"
            (missing a ReferenceGrant?)
          reason: RefNotPermitted
          status: "False"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top