Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for stage1 (0.14 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

    import java.lang.annotation.Retention
    import java.lang.annotation.RetentionPolicy
    import java.lang.annotation.Target
    
    /**
     * Marks a test as flaky. The flaky tests are quarantined to run
     * at a special stage so it won't interrupt normal build pipeline.
     *
     * For Spock tests, including/excluding tests annotated by this annotation is handled by `SpockConfig.groovy` in classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder.java

        public void addFirstLevelDependency(Dependency moduleDependency, DependencyGraphNode dependency) {
            builder.firstLevelDependency(dependency.getNodeId());
            //we don't serialise the module dependencies at this stage so we need to keep track
            //of the mapping module dependency <-> resolved dependency
            modulesMap.put(dependency.getNodeId(), moduleDependency);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. ci/official/upload.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # This script uploads all staged artifacts from all previous builds in the same
    # job chain to GCS and PyPI.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Update the version numbers for Nightly only, then fetch the version numbers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultRootLocator.java

                // even before the arguments from the command line are parsed.  Any exception
                // that would happen here should cause the build to fail at a later stage
                // (when actually parsing the POM) and will lead to a better exception being
                // displayed to the user, so just bail out and return false.
            }
            return false;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/AbstractResolutionFailureException.java

    import org.gradle.internal.exceptions.StyledException;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Abstract base class for all attribute matching selection failures occurring at any stage of dependency resolution.
     *
     * This exception type carries information about the failure, and implements {@link ResolutionProvider} to provide a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

     public:
      Status Run(const GraphOptimizationPassOptions& options) override;
    
      // The following methods are public only for unit tests.
    
      // This pass has two stages:
      // a) first, we call EncapsulateSubgraphsPass to encapsulate all nodes
      //    marked with the same _xla_compile_id attribute into functions. These
      //    functions contain the computations to be passed to XlaLaunch. During
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

    /**
     * The meta-data for an external component instance that is required during dependency resolution.
     *
     * <p>Note that this type is being replaced by several other interfaces that separate out the data and state required at various stages of dependency resolution.
     * You should try to use those interfaces instead of using this interface or introduce a new interface that provides a view over this type but exposes only the
     * data required.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ConfigurationMetadata.java

    import java.util.List;
    import java.util.Set;
    
    /**
     * <p>Note that this type is being replaced by several other interfaces that separate out the data and state required at various stages of dependency resolution.
     * You should try to use those interfaces instead of using this interface or introduce a new interface that provides a view over this type but exposes only the
     * data required.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

        "java.compiler",
        "file.separator",
        "path.separator",
        "line.separator",
        "user.name",
        "user.home",
        "java.runtime.version"
        // Not java.io.tmpdir and user.dir at this stage
    )
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class InstrumentedInputAccessListener(
        listenerManager: ListenerManager,
        configurationCacheProblemsListener: ConfigurationCacheProblemsListener,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. cmd/bucket-notification-handlers.go

    					config.QueueList = append(config.QueueList[:i],
    						config.QueueList[i+1:]...)
    				}
    				// This is a one time activity we shall do this
    				// here and allow stale ARN to be removed. We shall
    				// never reach a stage where we will have stale
    				// notification configs.
    			}
    		} else {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    
    	configData, err := xml.Marshal(config)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top