Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 210 for dsts (0.03 sec)

  1. pkg/proxy/ipvs/util/testing/fake.go

    	if _, ok := f.Services[key]; !ok {
    		return fmt.Errorf("failed to add destination for service %v, service not found", key.String())
    	}
    	dests := f.Destinations[key]
    	if dests == nil {
    		dests = make([]*utilipvs.RealServer, 0)
    		f.Destinations[key] = dests
    	}
    	f.Destinations[key] = append(f.Destinations[key], dest)
    	// The tests assumes that the slice is sorted
    	sort.Sort(byAddress(f.Destinations[key]))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 250 bytes
    - Viewed (0)
  3. src/image/draw/draw.go

    	i0 := dst.PixOffset(r.Min.X, r.Min.Y)
    	i1 := i0 + r.Dx()*4
    	for i := i0; i < i1; i += 4 {
    		dst.Pix[i+0] = sr8
    		dst.Pix[i+1] = sg8
    		dst.Pix[i+2] = sb8
    		dst.Pix[i+3] = sa8
    	}
    	firstRow := dst.Pix[i0:i1]
    	for y := r.Min.Y + 1; y < r.Max.Y; y++ {
    		i0 += dst.Stride
    		i1 += dst.Stride
    		copy(dst.Pix[i0:i1], firstRow)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 250 bytes
    - Viewed (0)
  5. Jenkinsfile.s390x

                            if (isUnix()) {
                                sh "rm -rvf $WORK_DIR/dists $WORK_DIR/it-local-repo"
                            } else {
                                bat "if exist it-local-repo rmdir /s /q it-local-repo"
                                bat "if exist dists         rmdir /s /q dists"
                            }
                            dir('dists') {
                              unstash 'maven-dist-s390x'
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.wrapper.Wrapper.xml

                    <td>distributionPath</td>
                    <td><literal>'wrapper/dists'</literal></td>
                </tr>
                <tr>
                    <td>distributionBase</td>
                    <td><literal>PathBase.GRADLE_USER_HOME</literal></td>
                </tr>
                <tr>
                    <td>archivePath</td>
                    <td><literal>'wrapper/dists'</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/kotlin/gradle.properties

    # tag::gradle-properties[]
    gradlePropertiesProp=gradlePropertiesValue
    gradleProperties.with.dots=gradlePropertiesDottedValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 152 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            projectLayoutRegistry.getGeneratorsFor(_) >> [defaultGenerator]
            defaultGenerator.modularizationOptions >> [ModularizationOption.SINGLE_PROJECT]
            defaultGenerator.dsls >> [KOTLIN]
            defaultGenerator.defaultDsl >> KOTLIN
            defaultGenerator.getTestFrameworks(_) >> [NONE]
            defaultGenerator.getDefaultTestFramework(_) >> NONE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/tests-kotlin/gradlePropertiesCommandLine.kotlin.sample.conf

    executable: gradle
    args: printProperty
    flags: "--quiet --stacktrace -I init.gradle.kts -PgradlePropertiesProp=commandLineValue -PgradleProperties.with.dots=commandLineValueForDottedProperty"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 252 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/modifiers/BuildInitBuildScriptDslTest.groovy

            then:
            GradleException e = thrown()
            e.message == TextUtil.toPlatformLineSeparators("""The requested build script DSL 'unknown' is not supported. Supported DSLs:
      - 'kotlin'
      - 'groovy'""")
        }
    
        def "should list all supported build script DSLs"() {
            when:
            def result = BuildInitDsl.listSupported()
    
            then:
            result.size() == 2
            result[0] == "kotlin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top