Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 254 for dsts (0.07 sec)

  1. 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)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/tree.css

    .jstree-default.jstree-focused { background:#ffffee; }
    
    .jstree-default .jstree-no-dots li, 
    .jstree-default .jstree-no-dots .jstree-leaf > ins { background:transparent; }
    .jstree-default .jstree-no-dots .jstree-open > ins { background-position:-18px 0; }
    .jstree-default .jstree-no-dots .jstree-closed > ins { background-position:0 0; }
    
    .jstree-default .jstree-no-icons a .jstree-icon { display:none; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:29 UTC 2014
    - 5.4K bytes
    - Viewed (0)
  3. src/crypto/subtle/xor_generic.go

    		dst = dst[done:]
    		x = x[done:]
    		y = y[done:]
    	}
    	xorLoop(dst, x, y)
    }
    
    // aligned reports whether dst, x, and y are all word-aligned pointers.
    func aligned(dst, x, y *byte) bool {
    	return (uintptr(unsafe.Pointer(dst))|uintptr(unsafe.Pointer(x))|uintptr(unsafe.Pointer(y)))&(wordSize-1) == 0
    }
    
    // words returns a []uintptr pointing at the same data as x,
    // with any trailing partial word removed.
    func words(x []byte) []uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 31 23:25:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/html/escape.go

    		// No-op.
    	} else if x := entity[string(entityName)]; x != 0 {
    		return dst + utf8.EncodeRune(b[dst:], x), src + i
    	} else if x := entity2[string(entityName)]; x[0] != 0 {
    		dst1 := dst + utf8.EncodeRune(b[dst:], x[0])
    		return dst1 + utf8.EncodeRune(b[dst1:], x[1]), src + i
    	} else if !attribute {
    		maxLen := len(entityName) - 1
    		if maxLen > longestEntityWithoutSemicolon {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  5. docs/site-replication/gen-oidc-sts-cred.go

    package main
    
    // This programs mocks user interaction against Dex IDP and generates STS
    // credentials. It is for MinIO testing purposes only.
    //
    // Run like:
    //
    // $ MINIO_ENDPOINT=http://localhost:9000 go run gen-oidc-sts-cred.go
    
    import (
    	"context"
    	"fmt"
    	"log"
    	"net/http"
    	"os"
    
    	cr "github.com/minio/minio-go/v7/pkg/credentials"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 29 01:27:09 UTC 2022
    - 2.3K 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. src/cmd/go/internal/gover/mod.go

    	if IsToolchain(path) {
    		if path == "toolchain" {
    			return IsLang(FromToolchain(vers))
    		}
    		return IsLang(vers)
    	}
    	// Semver
    	dots := 0
    	for i := 0; i < len(vers); i++ {
    		switch vers[i] {
    		case '-', '+':
    			return false
    		case '.':
    			dots++
    			if dots >= 2 {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top