Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dynValue1 (0.2 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            options[10].name == "stringValue"
            options[10].description == "string value"
            options[10].argumentType == String
            options[10].availableValues == ["dynValue1", "dynValue2"] as Set
        }
    
        def "can read options linked to property getter methods of a task"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    			if err != nil {
    				t.Skip("The system may not support ELF, skipped.")
    			}
    			defer elfFile.Close()
    
    			flags, err := elfFile.DynValue(elf.DT_FLAGS)
    			if err != nil {
    				t.Fatalf("failed to get DT_FLAGS: %v", err)
    			}
    
    			flags1, err := elfFile.DynValue(elf.DT_FLAGS_1)
    			if err != nil {
    				t.Fatalf("failed to get DT_FLAGS_1: %v", err)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/debug/elf/file_test.go

    	if err != nil {
    		t.Fatalf("could not read %s: %v", testdata, err)
    	}
    	defer f.Close()
    
    	vals, err := f.DynValue(DT_VERNEEDNUM)
    	if err != nil {
    		t.Fatalf("DynValue(DT_VERNEEDNUM): got unexpected error %v", err)
    	}
    
    	if len(vals) != 1 || vals[0] != 1 {
    		t.Errorf("DynValue(DT_VERNEEDNUM): got %v, want [1]", vals)
    	}
    }
    
    func TestIssue59208(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    		if t == tag {
    			s, ok := getString(str, int(v))
    			if ok {
    				all = append(all, s)
    			}
    		}
    	}
    	return all, nil
    }
    
    // DynValue returns the values listed for the given tag in the file's dynamic
    // section.
    func (f *File) DynValue(tag DynTag) ([]uint64, error) {
    	ds := f.SectionByType(SHT_DYNAMIC)
    	if ds == nil {
    		return nil, nil
    	}
    	d, err := ds.Data()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"VoidType", Type, 0},
    		{"VoidType.CommonType", Field, 0},
    	},
    	"debug/elf": {
    		{"(*File).Close", Method, 0},
    		{"(*File).DWARF", Method, 0},
    		{"(*File).DynString", Method, 1},
    		{"(*File).DynValue", Method, 21},
    		{"(*File).DynamicSymbols", Method, 4},
    		{"(*File).ImportedLibraries", Method, 0},
    		{"(*File).ImportedSymbols", Method, 0},
    		{"(*File).Section", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top