Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 469 for createfing (0.29 sec)

  1. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec describes the desired attributes of a resource that then needs
      // to be allocated. It can only be set once when creating the
      // ResourceClaim.
      optional ResourceClaimSpec spec = 2;
    
      // Status describes whether the resource is available and with which
      // attributes.
      // +optional
      optional ResourceClaimStatus status = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            def pluginMarker = mavenRepo.module('com.example.greeting', 'com.example.greeting.gradle.plugin', '1.0')
    
            producer.file('settings.gradle').createFile()
            producer.file('build.gradle') << """
                plugins {
                    id('java-gradle-plugin')
                    id('maven-publish')
                }
    
                group = "com.example"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

        layout.buildDirectory.file("generated-resources/$name/$name.json")
    
    fun bucket() =
        configurations.creating {
            isCanBeResolved = false
            isCanBeConsumed = false
            isVisible = false
        }
    
    fun libraryResolver(extends: List<Configuration>) =
        configurations.creating {
            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

            }
    
            @Provides
            ClassLoaderHierarchyHasher createClassLoaderHierarchyHasher() {
                // Return a dummy implementation of this as creating a real hasher drags ~20 more services
                // along with it, and a hasher isn't actually needed on the worker process side at the moment.
                return new ClassLoaderHierarchyHasher() {
                    @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/os/file_windows.go

    	}
    	attrs := uint32(syscall.FILE_FLAG_BACKUP_SEMANTICS)
    	// Use FILE_FLAG_OPEN_REPARSE_POINT, otherwise CreateFile will follow symlink.
    	// See https://docs.microsoft.com/en-us/windows/desktop/FileIO/symbolic-link-effects-on-file-systems-functions#createfile-and-createfiletransacted
    	attrs |= syscall.FILE_FLAG_OPEN_REPARSE_POINT
    	h, err := syscall.CreateFile(p, 0, 0, nil, syscall.OPEN_EXISTING, attrs, 0)
    	if err != nil {
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            } else {
                assert spec.getOutput().contains("Creating tooling model as no cached configuration is available for the requested model") ||
                    spec.getOutput().contains("Creating tooling model as configuration cache cannot be reused because")
            }
        }
    
        private boolean isQuietLogging() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    gradlePlugin {  // Define a custom plugin
        val greeting by plugins.creating {  // Define `greeting` plugin using the `plugins.creating` method
            id = "license.greeting" // Create plugin with the specified ID
            implementationClass = "license.LicensePlugin"   // and specified implementation class
        }
    }
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/etcd/local.go

    	klog.V(1).Info("[etcd] Checking etcd cluster health")
    
    	// creates an etcd client that connects to all the local/stacked etcd members
    	klog.V(1).Info("creating etcd client that connects to etcd pods")
    	etcdClient, err := etcdutil.NewFromCluster(client, certificatesDir)
    	if err != nil {
    		return err
    	}
    
    	// Checking health state
    	err = etcdClient.CheckClusterHealth()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                task buildInBuild(type:GradleBuild) {
                    dir = 'other'
                    startParameter.projectProperties['foo'] = true // not a String
                }
            """
            file('other/settings.gradle').createFile()
            file('other/build.gradle') << 'assert foo==true'
    
            when:
            run 'buildInBuild'
    
            then:
            noExceptionThrown()
        }
    
        def "can set build path"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            def existingDslFixture = rootProjectDslFixtureFor(existingScriptDsl as BuildInitDsl)
            def targetDslFixture = dslFixtureFor(targetScriptDsl as BuildInitDsl)
    
            and:
            existingDslFixture.buildFile.createFile()
    
            when:
            initFailsWith targetScriptDsl as BuildInitDsl
    
            then:
            result.assertTasksExecuted(":init")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top