Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 254 for dsts (0.06 sec)

  1. pkg/kubelet/envvars/envvars.go

    	}
    	return result
    }
    
    func makeEnvVariableName(str string) string {
    	// TODO: If we simplify to "all names are DNS1123Subdomains" this
    	// will need two tweaks:
    	//   1) Handle leading digits
    	//   2) Handle dots
    	return strings.ToUpper(strings.Replace(str, "-", "_", -1))
    }
    
    func makeLinkVariables(service *v1.Service) []v1.EnvVar {
    	prefix := makeEnvVariableName(service.Name)
    	all := []v1.EnvVar{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    ├── daemon // <4>
    │   ├── ⋮
    │   ├── 4.8
    │   └── 4.9
    ├── init.d                  // <5>
    │   └── my-setup.gradle
    ├── jdks                    // <6>
    │   ├── ⋮
    │   └── jdk-14.0.2+12
    ├── wrapper
    │   └── dists                   // <7>
    │       ├── ⋮
    │       ├── gradle-4.8-bin
    │       ├── gradle-4.9-all
    │       └── gradle-4.9-bin
    └── gradle.properties       // <8>
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/encoding/base32/base32_test.go

    		testEqual(t, `AppendDecode("", %q) = %q, want %q`, p.encoded, string(dst2), p.decoded)
    		if len(dst) > 0 && len(dst2) > 0 && &dst[0] != &dst2[0] {
    			t.Errorf("unexpected capacity growth: got %d, want %d", cap(dst2), cap(dst))
    		}
    	}
    }
    
    func TestDecoder(t *testing.T) {
    	for _, p := range pairs {
    		decoder := NewDecoder(StdEncoding, strings.NewReader(p.encoded))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

            !parser.root
            !outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-other/", true, exitHandler)
            then:
            outsideOfRoot
        }
    
        def "can parse with dots"() {
            def parser = new RelativePathParser("tree-reports.html.destination/")
            boolean outsideOfRoot
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		"simple",
    		"now-with-dashes",
    		"1-starts-with-num",
    		"1234",
    		"simple/simple",
    		"now-with-dashes/simple",
    		"now-with-dashes/now-with-dashes",
    		"now.with.dots/simple",
    		"now-with.dashes-and.dots/simple",
    		"1-num.2-num/3-num",
    		"1234/5678",
    		"1.2.3.4/5678",
    		"Uppercase_Is_OK_123",
    		"example.com/Uppercase_Is_OK_123",
    		"requests.storage-foo",
    		strings.Repeat("a", 63),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            file(WRAPPER_PROPERTIES_PATH) << 'distributionSha256Sum=bad'
    
            when:
            def failure = wrapperExecuter.withStackTraceChecksDisabled().runWithFailure()
            def f = new File(file("user-home/wrapper/dists/gradle-bin").listFiles()[0], "gradle-bin.zip")
    
            then:
            failure.error.contains("""
    Verification of Gradle distribution failed!
    
    Your Gradle distribution may have been tampered with.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/xml/SimpleXmlWriterSpec.groovy

            when:
            writer.startElement(name)
    
            then:
            notThrown(IllegalArgumentException)
    
            where:
            name << ["name", "NAME", "with-dashes", "with.dots", "with123digits", ":", "_", "\u037f\u0300", "ns:foo"]
        }
    
        def "validates tag names"() {
            when:
            writer.startElement(name)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                int i, len, dots;
                char[] data;
    
                i = dots = 0;                    /* quick IP address validation */
                len = calledName.length();
                data = calledName.toCharArray();
                while( i < len && Character.isDigit( data[i++] )) {
                    if( i == len && dots == 3 ) {
                        // probably an IP address
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_block_test.go

    			specVolumeName: "spec-0",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("plugins/kubernetes.io/csi/volumeDevices/%s/%s", "spec-0", "dev")),
    		},
    		{
    			name:           "specName with dots",
    			specVolumeName: "test.spec.1",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("plugins/kubernetes.io/csi/volumeDevices/%s/%s", "test.spec.1", "dev")),
    		},
    	}
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                    }
                                }
                                properties = [
                                    myProp: "myValue",
                                    "prop.with.dots": "anotherValue"
                                ]
                                withXml {
                                    def dependency = asNode().appendNode('dependencies').appendNode('dependency')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top