Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for dofiles (0.32 sec)

  1. docs/tr/docs/tutorial/static-files.md

    Hasan Sezer Taşan <******@****.***> 1716249428 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 23:57:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/pack/pack.go

    	}
    	for i, name := range ar.files {
    		if e.Name == name {
    			copy(ar.files[i:], ar.files[i+1:])
    			ar.files = ar.files[:len(ar.files)-1]
    			return true
    		}
    	}
    	return false
    }
    
    // addFiles adds files to the archive. The archive is known to be
    // sane and we are positioned at the end. No attempt is made
    // to check for existing files.
    func (ar *Archive) addFiles() {
    	if len(ar.files) == 0 {
    		usage()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    )
    
    const (
    	// DefaultServiceDNSDomain defines default cluster-internal domain name for Services and Pods
    	DefaultServiceDNSDomain = "cluster.local"
    	// DefaultServicesSubnet defines default service subnet range
    	DefaultServicesSubnet = "10.96.0.0/12"
    	// DefaultClusterDNSIP defines default DNS IP
    	DefaultClusterDNSIP = "10.96.0.10"
    	// DefaultKubernetesVersion defines default kubernetes version
    	DefaultKubernetesVersion = "stable-1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/ClassPathEncodingExtensions.kt

        }
    }
    
    
    internal
    fun Encoder.writeDefaultClassPath(classPath: ClassPath) {
        writeCollection(classPath.asFiles) {
            writeFile(it)
        }
    }
    
    
    internal
    fun Encoder.writeTransformedClassPath(classPath: TransformedClassPath) {
        writeCollection(classPath.asFiles.zip(classPath.asTransformedFiles)) {
            writeFile(it.first)
            writeFile(it.second)
        }
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

            then:
            project.sourceDirectories.find {it.path == 'src/main/java' }.classpathAttributes.isEmpty()
        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Source folder defines one classpath attribute"() {
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
                """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. cmd/import-boss/main_test.go

    		}
    	}
    }
    
    func TestPackageDir(t *testing.T) {
    	cases := []struct {
    		input  *packages.Package
    		expect string
    	}{{
    		input: &packages.Package{
    			PkgPath:      "example.com/foo/bar/qux",
    			GoFiles:      []string{"/src/prj/file.go"},
    			IgnoredFiles: []string{"/otherdir/file.go"},
    		},
    		expect: filepath.Clean("/src/prj"),
    	}, {
    		input: &packages.Package{
    			PkgPath:      "example.com/foo/bar/qux",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

        def "uses modules to determine gradle API classpath"() {
            when:
            def classpath = provider.findClassPath("GRADLE_API")
    
            then:
            classpath.asFiles.collect{it.name} == [
                "gradle-worker-main-runtime",
                "gradle-launcher-runtime",
                "gradle-cli-runtime",
                "gradle-workers-runtime",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/software/publish/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Base plugin for the maven and ivy publish plugins. Defines the publishing extension."
    
    errorprone {
        disabledChecks.addAll(
            "InlineMeSuggester", // 7 occurrences
            "MixedMutabilityReturnType", // 5 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/IgnoredConfigurationInputs.kt

     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.File
    
    
    /**
     * Defines specific configuration inputs that should not be included in the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    interface IgnoredConfigurationInputs {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/MinimalEvaluationSchemaComponent.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.FunctionExtractor
    import org.gradle.internal.declarativedsl.schemaBuilder.PropertyExtractor
    
    
    /**
     * Defines a minimal set of features for Declarative DSL evaluation. The only Gradle-related customization in this component is [gradleConfigureLambdas].
     * Besides, no custom Gradle APIs are considered as schema contributors.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top