Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 604 for Ntype (0.14 sec)

  1. cmd/metrics-v3-handler.go

    	}
    }
    
    // metricDisplay - contains info on a metric for display purposes.
    type metricDisplay struct {
    	Name   string   `json:"name"`
    	Help   string   `json:"help"`
    	Type   string   `json:"type"`
    	Labels []string `json:"labels"`
    }
    
    func (md metricDisplay) String() string {
    	return fmt.Sprintf("Name: %s\nType: %s\nHelp: %s\nLabels: {%s}\n", md.Name, md.Type, md.Help, strings.Join(md.Labels, ","))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	LDSYMSZ_64     = 24
    	RELSZ_64       = 14
    )
    
    // Type representing all XCOFF symbols.
    type xcoffSym interface {
    }
    
    // Symbol Table Entry
    type XcoffSymEnt64 struct {
    	Nvalue  uint64 // Symbol value
    	Noffset uint32 // Offset of the name in string table or .debug section
    	Nscnum  int16  // Section number of symbol
    	Ntype   uint16 // Basic and derived type specification
    	Nsclass uint8  // Storage class of symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

                extention = ".sh";
                content = "#!/bin/bash\nsleep " + sleep + ";cat $1";
            } else {
                // Windows
                extention = ".bat";
                content = "ping localhost -n " + sleep + "\r\ntype %1";
            }
            File file;
            try {
                file = File.createTempFile("script", extention);
                file.deleteOnExit();
                FileUtil.writeBytes(file.getAbsolutePath(), content.getBytes());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/internal/xcoff/file.go

    }
    
    type Reloc struct {
    	VirtualAddress   uint64
    	Symbol           *Symbol
    	Signed           bool
    	InstructionFixed bool
    	Length           uint8
    	Type             uint8
    }
    
    // ImportedSymbol holds information about an imported XCOFF symbol.
    type ImportedSymbol struct {
    	Name    string
    	Library string
    }
    
    // FileHeader holds information about an XCOFF file header.
    type FileHeader struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    3. **Type of interception**: Either BYTECODE_UPGRADE for property upgrades or INSTRUMENTATION for cc instrumentation: we want to use only instrumentation interceptors in some cases and that is why you need to define a type
    4. **Annotations to define interception type**, like if this is an instance or static method, if we should intercept Groovy or just Java etc.
    5. **Return type **of original call
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    				// d.Name "[" pname ...
    				// d.Name "[" pname ptype ...
    				// d.Name "[" pname ptype "," ...
    				d.TParamList = p.paramList(pname, ptype, _Rbrack, true) // ptype may be nil
    				d.Alias = p.gotAssign()
    				d.Type = p.typeOrNil()
    			} else {
    				// d.Name "[" pname "]" ...
    				// d.Name "[" x ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    // Type is found in Header.Type.
    type Type uint16
    
    const (
    	ET_NONE   Type = 0      /* Unknown type. */
    	ET_REL    Type = 1      /* Relocatable. */
    	ET_EXEC   Type = 2      /* Executable. */
    	ET_DYN    Type = 3      /* Shared object. */
    	ET_CORE   Type = 4      /* Core file. */
    	ET_LOOS   Type = 0xfe00 /* First operating system specific. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. src/cmd/pack/pack_test.go

    	printf := func(format string, args ...any) {
    		_, err := fmt.Fprintf(b, format, args...)
    		if err != nil {
    			t.Fatalf("Writing to %s: %v", large, err)
    		}
    	}
    
    	printf("package large\n\ntype T struct {\n")
    	for i := 0; i < 1000; i++ {
    		printf("f%d int `tag:\"", i)
    		for j := 0; j < 100; j++ {
    			printf("t%d=%d,", j, j)
    		}
    		printf("\"`\n")
    	}
    	printf("}\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/stmt.go

    				continue
    			}
    			if n1.Op() != ir.OTYPE {
    				base.ErrorfAt(ncase.Pos(), errors.NotAType, "%L is not a type", n1)
    				continue
    			}
    			if !n1.Type().IsInterface() {
    				why := ImplementsExplain(n1.Type(), t)
    				if why != "" {
    					base.ErrorfAt(ncase.Pos(), errors.ImpossibleAssert, "impossible type switch case: %L cannot have dynamic type %v (%s)", guard.X, n1.Type(), why)
    				}
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/go/parser/parser_test.go

    func f2b([]byte, (int), *float)
    func f3b(a, b *int, c []float)
    func f4b(...*complex)
    func f5b(a s1a, b ...[]complex)
    //
    type s1a struct { int }
    type s2a struct { byte; int; s1a }
    type s3a struct { a, b int; c float }
    //
    type s1b struct { *int }
    type s2b struct { byte; int; *float }
    type s3b struct { a, b *s3b; c []float }
    `, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	want := "int " + // f1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top