Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for predefined (0.35 sec)

  1. src/html/template/escape_test.go

    	}
    	for _, test := range [...]struct {
    		desc, input, output string
    	}{
    		// covering issue 20323
    		{
    			"field with predefined escaper name 1",
    			`{{.html | print}}`,
    			`<h1>Hi!</h1>`,
    		},
    		// covering issue 20323
    		{
    			"field with predefined escaper name 2",
    			`{{.urlquery | print}}`,
    			`http://www.foo.com/index.html?title=main`,
    		},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	WinBuiltinDeviceOwnersSid                     = 119
    )
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the local machine.
    func CreateWellKnownSid(sidType WELL_KNOWN_SID_TYPE) (*SID, error) {
    	return CreateWellKnownDomainSid(sidType, nil)
    }
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                   this.rightCalendar.month.hour(hour).minute(minute).second(second);
    L607:            }
    L608:
    L609:            this.renderCalendar('left');
    L610:            this.renderCalendar('right');
    L611:
    L612:            //highlight any predefined range matching the current start and end dates
    L613:            this.container.find('.ranges li').removeClass('active');
    L614:            if (this.endDate == null) return;
    L615:
    L616:            this.calculateChosenLabel();
    L617:        },
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  4. src/time/format.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package time
    
    import (
    	"errors"
    	"internal/stringslite"
    	_ "unsafe" // for linkname
    )
    
    // These are predefined layouts for use in [Time.Format] and [time.Parse].
    // The reference time used in these layouts is the specific time stamp:
    //
    //	01/02 03:04:05PM '06 -0700
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	ldr := ctxt.loader
    	/* C_FILE */
    	s := &XcoffSymEnt64{
    		Noffset: uint32(f.stringTable.add(".file")),
    		Nsclass: C_FILE,
    		Nscnum:  N_DEBUG,
    		Ntype:   0, // Go isn't inside predefined language.
    		Nnumaux: 1,
    	}
    	f.addSymbol(s)
    	currSymSrcFile.file = s
    
    	// Auxiliary entry for file name.
    	auxf := &XcoffAuxFile64{
    		Xoffset:  uint32(f.stringTable.add(name)),
    		Xftype:   XFT_FN,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	if T == V {
    		return true
    	}
    
    	kind := Kind(T.Kind())
    	if kind != Kind(V.Kind()) {
    		return false
    	}
    
    	// Non-composite types of equal kind have same underlying type
    	// (the predefined instance of the type).
    	if Bool <= kind && kind <= Complex128 || kind == String || kind == UnsafePointer {
    		return true
    	}
    
    	// Composite types.
    	switch kind {
    	case Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    			{Name{"space", "x"}, "value"},
    		}},
    	},
    	want: `<foo xmlns="space" xmlns:_xmlns="xmlns" _xmlns:a="space" _xmlns:b="space" xmlns:space="space" space:x="value">`,
    }, {
    	desc: "nested element redefines name space",
    	toks: []Token{
    		StartElement{Name{"", "foo"}, []Attr{
    			{Name{"xmlns", "x"}, "space"},
    		}},
    		StartElement{Name{"space", "foo"}, []Attr{
    			{Name{"xmlns", "y"}, "space"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    				virtualServiceWithNestedWildcardHost,
    				virtualServiceWithGoogleWildcardHost,
    			},
    			Services: []*model.Service{exampleWildcardService, exampleNestedWildcardService},
    		})
    
    		// Redefine the service registry for this test
    		serviceRegistry := map[host.Name]*model.Service{
    			"*.example.org":             exampleWildcardService,
    			"goodbye.hello.example.org": exampleNestedWildcardService,
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    	s.AddBytes(desc)
    	for len(s.Data())%4 != 0 {
    		s.AddUint8(0)
    	}
    	s.SetSize(int64(len(s.Data())))
    	s.SetAlign(4)
    }
    
    func (ctxt *Link) doelf() {
    	ldr := ctxt.loader
    
    	/* predefine strings we need for section headers */
    
    	addshstr := func(s string) int {
    		off := len(elfshstrdat)
    		elfshstrdat = append(elfshstrdat, s...)
    		elfshstrdat = append(elfshstrdat, 0)
    		return off
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top