Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for isIdent (0.83 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	number uint32
    	match  uint32
    }
    
    type nwmHeader struct {
    	ident       uint32
    	length      uint32
    	version     uint16
    	nwmType     uint16
    	bytesNeeded uint32
    	options     uint32
    	_           [16]byte
    	inputDesc   nwmTriplet
    	outputDesc  nwmQuadruplet
    }
    
    type nwmFilter struct {
    	ident         uint32
    	flags         uint32
    	resourceName  [8]byte
    	resourceId    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    	fmt.Fprintf(fgo2, "var %s = unsafe.Pointer(&__cgofn_%s)\n", cname, cname)
    
    	nret := 0
    	if !void {
    		d.Type.Results.List[0].Names = []*ast.Ident{ast.NewIdent("r1")}
    		nret = 1
    	}
    	if n.AddError {
    		d.Type.Results.List[nret].Names = []*ast.Ident{ast.NewIdent("r2")}
    	}
    
    	fmt.Fprint(fgo2, "\n")
    	fmt.Fprint(fgo2, "//go:cgo_unsafe_args\n")
    	conf.Fprint(fgo2, fset, d)
    	fmt.Fprint(fgo2, " {\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: C++ source set
    
    [source.multi-language-sample,groovy,indent=0]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/custom-layout/groovy/build.gradle[tag=cpp-sources]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, allowGeneric bool) exprKind {
    	if check.conf.Trace {
    		check.trace(e.Pos(), "-- expr %s", e)
    		check.indent++
    		defer func() {
    			check.indent--
    			check.trace(e.Pos(), "=> %s", x)
    		}()
    	}
    
    	kind := check.exprInternal(T, x, e, hint)
    
    	if !allowGeneric {
    		check.nonGeneric(T, x)
    	}
    
    	check.record(x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    	},
    }
    
    var marshalIndentTests = []struct {
    	Value     any
    	Prefix    string
    	Indent    string
    	ExpectXML string
    }{
    	{
    		Value: &SecretAgent{
    			Handle:    "007",
    			Identity:  "James Bond",
    			Obfuscate: "<redacted/>",
    		},
    		Prefix:    "",
    		Indent:    "\t",
    		ExpectXML: "<agent handle=\"007\">\n\t<Identity>James Bond</Identity><redacted/>\n</agent>",
    	},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
        Time_Keep   On
    
    [PARSER]
        Name        syslog-rfc3164-local
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/testing/testing.go

    		if end == -1 {
    			end = len(b)
    		} else {
    			end++
    		}
    		// An indent of 4 spaces will neatly align the dashes with the status
    		// indicator of the parent.
    		line := b[:end]
    		if line[0] == marker {
    			w.c.output = append(w.c.output, marker)
    			line = line[1:]
    		}
    		const indent = "    "
    		w.c.output = append(w.c.output, indent...)
    		w.c.output = append(w.c.output, line...)
    		b = b[end:]
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    For example for this main class:
    
    [source,java,indent=0]
    .src/main/java/com/acme/Person.java
    ----
    include::{snippetsPath}/java/fixtures/groovy/lib/src/main/java/com/acme/Person.java[tags=sample]
    ----
    
    A test fixture can be written in `src/testFixtures/java`:
    
    [source,java,indent=0]
    .src/testFixtures/java/com/acme/Simpsons.java
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    	"as", "break", "const", "continue", "else",
    	"for", "function", "if", "import", "let",
    	"loop", "package", "namespace", "return",
    	"var", "void", "while")
    
    func isCELIdentifier(name string) bool {
    	// IDENT          ::= [_a-zA-Z][_a-zA-Z0-9]* - RESERVED
    	// BOOL_LIT       ::= "true" | "false"
    	// NULL_LIT       ::= "null"
    	// RESERVED       ::= BOOL_LIT | NULL_LIT | "in"
    	// 	 | "as" | "break" | "const" | "continue" | "else"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    	//   [65297] .shstrtab         STRTAB          00000000 20e091 0cf3bb 00      0   0  1
    
    	var buf bytes.Buffer
    
    	{
    		buf.Grow(0x55AF1C) // 3003468 + 40 * 65298
    
    		h := Header32{
    			Ident:     [16]byte{0x7F, 'E', 'L', 'F', 0x01, 0x01, 0x01},
    			Type:      1,
    			Machine:   3,
    			Version:   1,
    			Shoff:     0x2DD44C,
    			Ehsize:    0x34,
    			Shentsize: 0x28,
    			Shnum:     0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top