Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 346 for north (0.18 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/PublishToMavenLocal.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Publishes a {@link org.gradle.api.publish.maven.MavenPublication} to the Maven Local repository.
     *
     * @since 1.4
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class PublishToMavenLocal extends AbstractPublishToMaven {
        private final Cached<MavenNormalizedPublication> normalizedPublication = Cached.of(this::computeNormalizedPublication);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/CleanAcceptedApiChanges.groovy

    import org.gradle.work.DisableCachingByDefault
    
    /**
     * A task used for cleaning up all accepted API changes. The functionality is called whenever the release process initiates "branching".
     */
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class CleanAcceptedApiChanges extends DefaultTask {
    
        @PathSensitive(PathSensitivity.ABSOLUTE)
        @InputDirectory
        abstract DirectoryProperty getJsonFileDirectory()
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/tasks/GenerateCUnitLauncher.java

    import org.gradle.work.DisableCachingByDefault;
    
    import java.io.File;
    
    /**
     * Generated the Gradle CUnit launcher: main method and header.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class GenerateCUnitLauncher extends DefaultTask {
        private File sourceDir;
        private File headerDir;
    
        @TaskAction
        public void generate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/controller/ttlafterfinished/config/v1alpha1/conversion.go

    package v1alpha1
    
    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kube-controller-manager/config/v1alpha1"
    	"k8s.io/kubernetes/pkg/controller/ttlafterfinished/config"
    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with TTLAfterFinishedControllerConfiguration types need to be manually exposed like this
    // in order for other packages that reference this package to be able to call these conversion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/config/v1alpha1/conversion.go

    package v1alpha1
    
    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kube-controller-manager/config/v1alpha1"
    	"k8s.io/kubernetes/pkg/controller/volume/persistentvolume/config"
    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with PersistentVolumeBinderControllerConfiguration types need to be manually exposed like this in order for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  6. pkg/controller/podgc/config/v1alpha1/conversion.go

    */
    
    package v1alpha1
    
    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kube-controller-manager/config/v1alpha1"
    	"k8s.io/kubernetes/pkg/controller/podgc/config"
    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with PodGCControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/config/v1alpha1/conversion.go

    */
    
    package v1alpha1
    
    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kube-controller-manager/config/v1alpha1"
    	"k8s.io/kubernetes/pkg/controller/nodeipam/config"
    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with NodeIPAMControllerConfiguration types need to be manually exposed like this in order for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/config/v1alpha1/conversion.go

    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kube-controller-manager/config/v1alpha1"
    	endpointslicemirroringconfig "k8s.io/kubernetes/pkg/controller/endpointslicemirroring/config"
    )
    
    // Important! The public back-and-forth conversion functions for the types in
    // this package with EndpointSliceMirroringControllerConfiguratio types need to
    // be manually exposed like this in order for other packages that reference this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:33 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ExtractPrecompiledScriptPluginPluginsTest.kt

            extractPluginsFrom(
                // the `buildscript` block is not really valid in precompiled script plugins (causes a runtime error)
                // but still worth testing here
                scriptPlugin(
                    "buildscript-and-plugins.gradle.kts",
                    """
                    buildscript {}
                    plugins { java }
                    """
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Tar.java

    import org.gradle.api.internal.file.copy.CopyAction;
    import org.gradle.api.tasks.Input;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Assembles a TAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Tar extends AbstractArchiveTask {
        private Compression compression = Compression.NONE;
    
        public Tar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top