Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 308 for Accessible (0.58 sec)

  1. ci/official/wheel_test/README.md

    This directory is dedicated to tests that require a built TensorFlow wheel
    file for testing, such as:
    
    * Ensuring the entire API is importable
    * Testing downstream projects against the wheel
    
    Ensure you have Bazel installed and accessible from your command line.
    
    These tests use hermetic Python. They also require a built TensorFlow wheel file
    and a requirements_lock file. The requirements_lock file is generated by the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // nodeTopology defines which nodes have access to the storage
      // for which capacity was reported. If not set, the storage is
      // not accessible from any node in the cluster. If empty, the
      // storage is accessible from all nodes. This field is
      // immutable.
      //
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector nodeTopology = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                    extension{} java.lang.Object
                    """
                )
            )
    
            // Making the Extension type accessible
            // should cause the accessors to be regenerated
            // with the now accessible type
            extensionSourceFile.writeText(
                """
                public
                class Extension
                """
            )
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

     * not have a (declared) member scope.
     *
     * Members declared by the enum class and overridden in the enum entry's body will be accessible, of course, but only the base version
     * declared in the enum class. For example, a narrowed return type of an overridden member in an enum entry's body will not be visible
     * outside the body.
     *
     * #### Example
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

         *
         * #### Examples of source code modifications which result in an **OOBM**
         *
         *  - Modification inside non-local (i.e. accessible outside) declaration without explicit return type specified
         *  - Modification of a package
         *  - Creation of a new declaration
         *  - Moving a declaration to another package
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

    /**
     * A {@link Configuration} which can reset its resolution state. This interface is
     * separate from {@code ConfigurationInternal} since that interface lives in
     * {@code :dependency-management} and is not accessible from {@code :core}.
     */
    public interface ResettableConfiguration extends Configuration {
    
        /**
         * Call this factory (which presumably resolves this Configuration) and then reset the resolution state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. docs/orchestration/docker-compose/README.md

    ```
    
    ### Windows
    
    ```sh
    docker-compose.exe pull
    docker-compose.exe up
    ```
    
    or
    
    ```sh
    docker stack deploy --compose-file docker-compose.yaml minio
    ```
    
    Distributed instances are now accessible on the host using the Minio CLI on port 9000 and the Minio Web Console on port 9001. Proceed to access the Web browser at <http://127.0.0.1:9001/>. Here 4 MinIO server instances are reverse proxied through Nginx load balancing.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 19:20:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. pilot/pkg/model/cluster_local.go

    	defaultClusterLocalNamespaces = []string{"kube-system"}
    	defaultClusterLocalServices   = []string{"kubernetes.default.svc"}
    )
    
    // ClusterLocalHosts is a map of host names or wildcard patterns which should only
    // be made accessible from within the same cluster.
    type ClusterLocalHosts struct {
    	specific sets.Set[host.Name]
    	wildcard sets.Set[host.Name]
    }
    
    // IsClusterLocal indicates whether the given host should be treated as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    {\"rule\": \"self.startsWith('kube')\"}\n\nThe `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.\n\nUnknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. src/reflect/visiblefields.go

    // license that can be found in the LICENSE file.
    
    package reflect
    
    // VisibleFields returns all the visible fields in t, which must be a
    // struct type. A field is defined as visible if it's accessible
    // directly with a FieldByName call. The returned fields include fields
    // inside anonymous struct members and unexported fields. They follow
    // the same order found in the struct, with anonymous fields followed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top