Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 587 for admitted (0.18 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationType.java

     * That is, determining enabled-ness is part of “finalizing”.
     * However, if the build fails during configuration or task graph assembly, it will not be emitted.
     * It must fire before any build cache is used.
     *
     * See BuildCacheControllerFactory.
     *
     * @since 4.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/init.go

    current directory, in effect creating a new workspace at the current
    directory.
    
    go work init optionally accepts paths to the workspace modules as
    arguments. If the argument is omitted, an empty workspace with no
    modules will be created.
    
    Each argument path is added to a use directive in the go.work file. The
    current go version will also be listed in the go.work file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/README.md

    have this label but without `addonmanager.kubernetes.io/mode=EnsureExists` will be
    treated as "reconcile class addons" for now.
    - Resources under `$ADDON_PATH` need to have either one of these two labels.
    Otherwise it will be omitted.
    
    #### Images
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. src/runtime/internal/sys/nih.go

    //
    // - Structs and arrays are not-in-heap if their elements are not-in-heap.
    // - Maps and channels contains no-in-heap types are disallowed.
    //
    // 4. Write barriers on pointers to not-in-heap types can be omitted.
    //
    // The last point is the real benefit of NotInHeap. The runtime uses
    // it for low-level internal structures to avoid memory barriers in the
    // scheduler and the memory allocator where they are illegal or simply
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/ScheduledWork.java

        public ScheduledWork(List<? extends Node> scheduledNodes, Collection<? extends Node> entryNodes) {
            // Checking that entryNodes are a subset of scheduledNodes can be expensive, so it is omitted from here.
            this.scheduledNodes = ImmutableList.copyOf(scheduledNodes);
            this.entryNodes = ImmutableSet.copyOf(entryNodes);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            e.message == TextUtil.toPlatformLineSeparators("""Circular dependency between the following tasks:
    :a
    \\--- :c
         \\--- :b
              \\--- :a (*)
    
    (*) - details omitted (listed previously)
    """)
        }
    
        def "cannot add a task with must run after induced circular reference"() {
            Task a = createTask("a")
            Task b = task("b", mustRunAfter: [a])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExpectedDeprecationWarning.java

    import com.google.common.base.Preconditions;
    
    import java.util.List;
    import java.util.regex.Pattern;
    
    /**
     * Represents a deprecation warning message that is expected to be emitted by a test.
     * <p>
     * This class exists to support the detection of deprecation warnings that span multiple lines,
     * which may include the keyword "{@code deprecated}" multiple times.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types.go

    type PartialObjectMetadata = v1.PartialObjectMetadata
    
    // IMPORTANT: PartialObjectMetadataList has different protobuf field ids in v1beta1 than
    // v1 because ListMeta was accidentally omitted prior to 1.15. Therefore this type must
    // remain independent of v1.PartialObjectMetadataList to preserve mappings.
    
    // PartialObjectMetadataList contains a list of objects containing only their metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml

                  <phase>validate</phase>
                  <goals>
                    <goal>parent-2</goal>
                  </goals>
                </execution>
                <execution>
                  <!-- NOTE: <id> deliberately omitted to use default value -->
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-default</goal>
                  </goals>
                </execution>
              </executions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml

                <phase>validate</phase>
                <goals>
                  <goal>parent-2</goal>
                </goals>
              </execution>
              <execution>
                <!-- NOTE: <id> deliberately omitted to use default value -->
                <phase>validate</phase>
                <goals>
                  <goal>parent-default</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
Back to top