Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for dsts (0.1 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    				dsts[i] = d
    				i++
    			}
    		}
    		if i < len(dsts) {
    			// Made some progress. Go around again.
    			dsts = dsts[:i]
    
    			// Append any extras destinations we generated.
    			dsts = append(dsts, e.extra...)
    			e.extra = e.extra[:0]
    			continue
    		}
    
    		// We made no progress. That means that any
    		// remaining unsatisfied moves are in simple cycles.
    		// For example, A -> B -> C -> D -> A.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    			AccessKey: "dillon",
    			SecretKey: "dillon-123",
    			Location:  "",
    		},
    	}
    
    	value, err := assumeRole.Retrieve()
    	if err != nil {
    		c.Fatalf("Expected to generate STS creds, got err: %#v", err)
    	}
    
    	// Check that the LDAP sts cred is actually working.
    	minioClient, err := minio.New(s.endpoint, &minio.Options{
    		Creds:     cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    						var s = this._get_settings().themes;
    						this.data.themes.dots = s.dots;
    						this.data.themes.icons = s.icons;
    						this.set_theme(s.theme, s.url);
    					}, this))
    				.bind("loaded.jstree", $.proxy(function () {
    						// bound here too, as simple HTML tree's won't honor dots & icons otherwise
    						if(!this.data.themes.dots) { this.hide_dots(); }
    						else { this.show_dots(); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    	{"aaa", "a", 0},
    	{"abc", "xyz", -1},
    	{"abc", "xcz", 2},
    	{"ab☺c", "x☺yz", 2},
    	{"a☺b☻c☹d", "cx", len("a☺b☻")},
    	{"a☺b☻c☹d", "uvw☻xyz", len("a☺b")},
    	{"aRegExp*", ".(|)*+?^$[]", 7},
    	{dots + dots + dots, " ", -1},
    	{"012abcba210", "\xffb", 4},
    	{"012\x80bcb\x80210", "\xffb", 3},
    	{"0123456\xcf\x80abc", "\xcfb\x80", 10},
    }
    
    var lastIndexAnyTests = []IndexTest{
    	{"", "", -1},
    	{"", "a", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	{"aaa", "a", 0},
    	{"abc", "xyz", -1},
    	{"abc", "xcz", 2},
    	{"ab☺c", "x☺yz", 2},
    	{"a☺b☻c☹d", "cx", len("a☺b☻")},
    	{"a☺b☻c☹d", "uvw☻xyz", len("a☺b")},
    	{"aRegExp*", ".(|)*+?^$[]", 7},
    	{dots + dots + dots, " ", -1},
    	{"012abcba210", "\xffb", 4},
    	{"012\x80bcb\x80210", "\xffb", 3},
    	{"0123456\xcf\x80abc", "\xcfb\x80", 10},
    }
    
    var lastIndexAnyTests = []BinOpTest{
    	{"", "", -1},
    	{"", "a", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    func (p *parser) printTrace(a ...any) {
    	const dots = ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . " +
    		". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    	const n = uint(len(dots))
    	pos := p.file.Position(p.pos)
    	fmt.Printf("%5d:%3d: ", pos.Line, pos.Column)
    	i := 2 * p.indent
    	for ; i > n; i -= n {
    		fmt.Print(dots)
    	}
    	fmt.Print(dots[0:i])
    	fmt.Println(a...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    // Parsing support
    
    func (p *parser) printTrace(a ...any) {
    	const dots = ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    	const n = len(dots)
    	pos := p.file.Position(p.pos)
    	fmt.Printf("%5d:%3d: ", pos.Line, pos.Column)
    	i := 2 * p.indent
    	for i > n {
    		fmt.Print(dots)
    		i -= n
    	}
    	// i <= n
    	fmt.Print(dots[0:i])
    	fmt.Println(a...)
    }
    
    func trace(p *parser, msg string) *parser {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    private void Install$InstallCheck(java.io.File, String); private boolean isVerified(); } org/gradle/wrapper/Install.class package org.gradle.wrapper; public synchronized class Install { public static final String DEFAULT_DISTRIBUTION_PATH = wrapper/dists; public static final String SHA_256 = .sha256; public static final int RETRIES = 3; private final Logger logger; private final IDownload download; private final PathAssembler pathAssembler; private final ExclusiveFileAccessM exclusiveFileAccessM; public...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        // mean, that name[pname.length()..<-1] is a static inner class.
                        // For this the rest of the name does not need any dots in its name.
                        // It is either completely a inner static class or it is not.
                        // Since we do not want to have useless lookups we create the name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	return `dnsmessage.MustNewName("` + printString(n.Data[:n.Length]) + `")`
    }
    
    // pack appends the wire format of the Name to msg.
    //
    // Domain names are a sequence of counted strings split at the dots. They end
    // with a zero-length string. Compression can be used to reuse domain suffixes.
    //
    // The compression map will be updated with new domain suffixes. If compression
    // is nil, compression will not be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top