Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 826 for raws (0.05 sec)

  1. src/cmd/go/internal/modindex/index_test.go

    	pkgs := []string{
    		"crypto",
    		"encoding",
    		"unsafe",
    		"encoding/json",
    		"runtime",
    		"net",
    	}
    	var raws []*rawPackage
    	for _, pkg := range pkgs {
    		raw := importRaw(src, pkg)
    		raws = append(raws, raw)
    		t.Run(pkg, func(t *testing.T) {
    			data := encodeModuleBytes([]*rawPackage{raw})
    			m, err := fromBytes(src, data)
    			if err != nil {
    				t.Fatal(err)
    			}
    			checkPkg(t, m, pkg, data)
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 23:35:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    0&&(r={});var n=Fv(this);for(var a in r)n[a]=r[a];return n},e.appendToPropertyAndEscape=function(r,n,a){this.raws||(this.raws={});var s=this[r],o=this.raws[r];this[r]=s+n,o||a!==n?this.raws[r]=(o||s)+a:delete this.raws[r]},e.setPropertyAndEscape=function(r,n,a){this.raws||(this.raws={}),this[r]=n,this.raws[r]=a},e.setPropertyWithoutEscape=function(r,n){this[r]=n,this.raws&&delete this.raws[r]},e.isAtPosition=function(r,n){if(this.source&&this.source.start&&this.source.end)return!(this.source.star...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb1/util/DES.java

        }
    
        private void cookey( int[] raw, int KnL[] )     {
            int raw0, raw1;
            int rawi, KnLi;
            int i;
    
            for ( i = 0, rawi = 0, KnLi = 0; i < 16; ++i )   {
                raw0 = raw[rawi++];
                raw1 = raw[rawi++];
                KnL[KnLi]  = (raw0 & 0x00fc0000) <<   6;
                KnL[KnLi] |= (raw0 & 0x00000fc0) <<  10;
                KnL[KnLi] |= (raw1 & 0x00fc0000) >>> 10;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.raw

    	_ = ``
    	_ = `
    `
    	_ = `foo
    		bar`
    	_ = `three spaces before the end of the line starting here:   
    they must not be removed`
    }
    
    func _() {
    	// smart handling of indentation for multi-line raw strings
    	var _ = ``
    	var _ = `foo`
    	var _ = `foo
    bar`
    
    	var _ = ``
    	var _ = `foo`
    	var _ =
    	// the next line should remain indented
    	`foo
    bar`
    
    	var _ =	// comment
    	``
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  5. callbacks/raw.go

    heige <******@****.***> 1638149600 +0800
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Nov 29 01:33:20 UTC 2021
    - 336 bytes
    - Viewed (0)
  6. pkg/bootstrap/platform/aws.go

    	}
    
    	resp, err := http.PUT(url, time.Millisecond*100, map[string]string{
    		// more details can be found at https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html
    		"X-aws-ec2-metadata-token-ttl-seconds": "60",
    	})
    	if err != nil {
    		log.Debugf("error in getting aws token : %v", err)
    		return ""
    	}
    	return resp.String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 03:52:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. docs/bigdata/README.md

    - [https://hadoop.apache.org/docs/current/hadoop-aws/tools/hadoop-aws/index.html](https://hadoop.apache.org/docs/current/hadoop-aws/tools/hadoop-aws/index.html)
    - [https://hadoop.apache.org/docs/r3.1.1/hadoop-aws/tools/hadoop-aws/committers.html](https://hadoop.apache.org/docs/r3.1.1/hadoop-aws/tools/hadoop-aws/committers.html)
    
    Once the config changes are applied, proceed to restart **Hadoop** services.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. src/encoding/json/tagkey_test.go

    		{Name(""), punctuationTag{"Union Rags"}, "Union Rags", "!#$%&()*+-./:;<=>?@[]^_{|}~ "},
    		{Name(""), spaceTag{"Perreddu"}, "Perreddu", "With space"},
    		{Name(""), unicodeTag{"Loukanikos"}, "Loukanikos", "Ελλάδα"},
    	}
    	for _, tt := range tests {
    		t.Run(tt.Name, func(t *testing.T) {
    			b, err := Marshal(tt.raw)
    			if err != nil {
    				t.Fatalf("%s: Marshal error: %v", tt.Where, err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    	rows, err = db.Query("SELECT|people|age|")
    	if err != nil {
    		t.Fatal(err)
    	}
    	rows.Next()
    	rows.Scan(&raw) // this must not write to the driver-owned memory in raw
    	rows.Close()
    
    	// Repeat the first query. Nothing should have changed.
    	rows, err = db.Query("SELECT|people|name|")
    	if err != nil {
    		t.Fatal(err)
    	}
    	rows.Next()
    	rows.Scan(&raw) // raw points to driver-owned memory again
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    var rowsCloseHook = func() func(*Rows, *error) { return nil }
    
    // Close closes the [Rows], preventing further enumeration. If [Rows.Next] is called
    // and returns false and there are no further result sets,
    // the [Rows] are closed automatically and it will suffice to check the
    // result of [Rows.Err]. Close is idempotent and does not affect the result of [Rows.Err].
    func (rs *Rows) Close() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top