Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for strictable (0.23 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateWindowsResourcesBaseNamesTestApp.groovy

        std::cout << foo1;
        std::cout << foo2;
    }
    """),
            sourceFile("rc/dir1", "resources.rc", """
    #include "hello.h"
    
    STRINGTABLE
    {
        IDS_FOO1, "foo1"
    }
    """),
            sourceFile("rc/dir2", "resources.rc", """
    #include "hello.h"
    
    STRINGTABLE
    {
        IDS_FOO2, "foo2"
    }
    """)]
    
        }
    
        @Override
        List<SourceFile> getHeaderFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/rc/resources.rc

    #include "resources.h"
    
    STRINGTABLE
    {
        IDS_HELLO,   "Hello world!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 73 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/WindowsResourceHelloWorldApp.groovy

    }
    """),
            new SourceFile("rc", "resources.rc", """
    #include "hello.h"
    
    // HACK: Ensure include root are correctly setup
    // See: https://github.com/gradle/gradle/issues/3662
    #include "winres.h"
    
    STRINGTABLE
    {
        #ifdef FRENCH
        IDS_HELLO, "${HELLO_WORLD_FRENCH}"
        #else
        IDS_HELLO, "${HELLO_WORLD}"
        #endif
    }
    """)
        ]
    
        List<SourceFile> getResourceSources() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/internal/duplex/MockStreamHandler.kt

    import java.util.concurrent.TimeUnit
    import mockwebserver3.Stream
    import mockwebserver3.StreamHandler
    import okio.utf8Size
    
    private typealias Action = (Stream) -> Unit
    
    /**
     * A scriptable request/response conversation. Create the script by calling methods like
     * [receiveRequest] in the sequence they are run.
     */
    class MockStreamHandler : StreamHandler {
      private val actions = LinkedBlockingQueue<Action>()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/debug/pe/file.go

    	Sections       []*Section
    	Symbols        []*Symbol    // COFF symbols with auxiliary symbol records removed
    	COFFSymbols    []COFFSymbol // all COFF symbols (including auxiliary symbol records)
    	StringTable    StringTable
    
    	closer io.Closer
    }
    
    // Open opens the named file using [os.Open] and prepares it for use as a PE binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// one byte. Further, the staticTable has a fixed, small length.
    	return d.dynTab.table.len() + staticTable.len()
    }
    
    func (d *Decoder) at(i uint64) (hf HeaderField, ok bool) {
    	// See Section 2.3.3.
    	if i == 0 {
    		return
    	}
    	if i <= uint64(staticTable.len()) {
    		return staticTable.ents[i-1], true
    	}
    	if i > uint64(d.maxTableIndex()) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http2/hpack/tables.go

    // meaning t.ents is reversed for dynamic tables. Hence, when t is a dynamic
    // table, the return value i actually refers to the entry t.ents[t.len()-i].
    //
    // All tables are assumed to be a dynamic tables except for the global staticTable.
    //
    // See Section 2.3.3.
    func (t *headerFieldTable) search(f HeaderField) (i uint64, nameValueMatch bool) {
    	if !f.Sensitive {
    		if id := t.byNameValue[pairNameValue{f.Name, f.Value}]; id != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. api/go1.8.txt

    pkg database/sql, type TxOptions struct, ReadOnly bool
    pkg debug/pe, method (*COFFSymbol) FullName(StringTable) (string, error)
    pkg debug/pe, method (StringTable) String(uint32) (string, error)
    pkg debug/pe, type File struct, COFFSymbols []COFFSymbol
    pkg debug/pe, type File struct, StringTable StringTable
    pkg debug/pe, type Reloc struct
    pkg debug/pe, type Reloc struct, SymbolTableIndex uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/encode.go

    // becomes false.
    func (e *Encoder) searchTable(f HeaderField) (i uint64, nameValueMatch bool) {
    	i, nameValueMatch = staticTable.search(f)
    	if nameValueMatch {
    		return i, true
    	}
    
    	j, nameValueMatch := e.dynTab.table.search(f)
    	if nameValueMatch || (i == 0 && j != 0) {
    		return j + uint64(staticTable.len()), nameValueMatch
    	}
    
    	return i, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. src/debug/pe/symbols_test.go

    		if !ok {
    			continue
    		}
    		sym := &f.COFFSymbols[k]
    		if sym.NumberOfAuxSymbols == 0 {
    			t.Errorf("expected aux symbols for sym %d", k)
    			continue
    		}
    		name, nerr := sym.FullName(f.StringTable)
    		if nerr != nil {
    			t.Errorf("FullName(%d) failed with %v", k, nerr)
    			continue
    		}
    		if name != tp.name {
    			t.Errorf("name check for %d, got %s want %s", k, name, tp.name)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top