Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for Accessible (0.18 sec)

  1. architecture/standards/0001-use-architectural-decision-records.md

    # ADR-0001 - Use Architectural Decision Records
    
    ## Date
    
    2023-12-01
    
    ## Context
    
    In a distributed team with many subteams, the best solution to communicate decisions is to use a format accessible by everyone in charge of development.
    
    We use *Specification* and *Discovery* documents stored in Google Drive, but they present some downsides:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    //
    // It returns an error if the content was not a valid Go source file
    // containing a package doc comment with a heading of the required
    // form.
    //
    // This machinery enables the package documentation (typically
    // accessible via the web at https://pkg.go.dev/) and the command
    // documentation (typically printed to a terminal) to be derived from
    // the same source and formatted appropriately.
    func ExtractDoc(content, name string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

        }
    
        private static List<ResettableExpectations> allResettableExpectationsOf(instance) {
            allInstanceFieldsOf(instance).findResults { field ->
                try {
                    def fieldValue = field.tap { accessible = true }.get(instance)
                    fieldValue instanceof ResettableExpectations ? fieldValue : null
                } catch (Exception ignored) {
                    null
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

            nameSpec,
            accessibleType<Configuration>()
        )
    
    
    private
    inline fun <reified T> accessibleType() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassDependentsAccumulatorTest.groovy

            accumulator.classesToConstants.get('b') == [0, 8] as Set
            accumulator.classesToConstants.get('c') == [3, 4] as Set
        }
    
        def "accumulates accessible and private dependents"() {
            accumulator.addClass("d", hash, "reason",  [], ['x'], IntSets.EMPTY_SET)
            accumulator.addClass("a", hash, null, ["b"], ["c"], IntSets.EMPTY_SET)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. cmd/erasure-common.go

    				return
    			}
    			di, err := disks[i].DiskInfo(context.Background(), DiskInfoOptions{})
    			if err != nil || di.Healing {
    				// - Do not consume disks which are not reachable
    				//   unformatted or simply not accessible for some reason.
    				//
    				// - Do not consume disks which are being healed
    				//
    				// - Future: skip busy disks
    				return
    			}
    
    			mu.Lock()
    			newDisks = append(newDisks, disks[i])
    			mu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top