Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 114 for dsts (0.04 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

            expect:
            toolingApi.gradleUserHomeDir.file("wrapper/dists/custom-dist").exists()
    
            when:
            toolingApi.gradleUserHomeDir.file("wrapper/dists/custom-dist").deleteDir()
            connector.disconnect()
    
            then:
            !toolingApi.gradleUserHomeDir.file("wrapper/dists/custom-dist").exists()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pilot/test/xdstest/extract.go

    func SilentlyUnmarshalAny[T any](a *anypb.Any) *T {
    	dst := any(new(T)).(proto.Message)
    	if err := a.UnmarshalTo(dst); err != nil {
    		var z *T
    		return z
    	}
    	return any(dst).(*T)
    }
    
    func UnmarshalAny[T any](t test.Failer, a *anypb.Any) *T {
    	dst := any(new(T)).(proto.Message)
    	if err := a.UnmarshalTo(dst); err != nil {
    		t.Fatalf("failed to unmarshal to %T: %v", dst, err)
    	}
    	return any(dst).(*T)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. pkg/spiffe/spiffe_test.go

    				TrustDomain:    "td",
    				Namespace:      "ns",
    				ServiceAccount: "sa",
    			},
    		},
    		{
    			"spiffe://td.with.dots/ns/ns.with.dots/sa/sa.with.dots",
    			&Identity{
    				TrustDomain:    "td.with.dots",
    				Namespace:      "ns.with.dots",
    				ServiceAccount: "sa.with.dots",
    			},
    		},
    		{
    			// Empty ns and sa
    			"spiffe://td/ns//sa/",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/link.go

    	if start < v.cut {
    		return 0, false
    	}
    	i := start
    	dots := 0
    	for ; i < len(v.s); i++ {
    		c := v.s[i]
    		if c == '_' {
    			dots = -2
    			continue
    		}
    		if c == '.' {
    			dots++
    			continue
    		}
    		if !isLDH(c) {
    			break
    		}
    	}
    	if dots >= 0 && i > start {
    		return i - start, true
    	}
    	v.cut = i
    	return 0, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/UniAddress.java

            if( Character.isDigit( hostname.charAt( 0 ))) {
                int i, len, dots;
                char[] data;
    
                i = dots = 0;                    /* quick IP address validation */
                len = hostname.length();
                data = hostname.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 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  8. src/encoding/base64/base64_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: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NbtAddress.java

                int i, len, dots;
                char[] data;
    
                i = dots = 0; /* quick IP address validation */
                len = this.calledName.length();
                data = this.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: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

     * of Android's private InetAddress#isNumeric API.
     *
     * This matches IPv6 addresses as a hex string containing at least one colon, and possibly
     * including dots after the first colon. It matches IPv4 addresses as strings containing only
     * decimal digits and dots. This pattern matches strings like "a:.23" and "54" that are neither IP
     * addresses nor hostnames; they will be verified as IP addresses (which is a more strict
     * verification).
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top