Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for res_search (0.25 sec)

  1. src/net/cgo_unix_cgo_res.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // res_search, for cgo systems where that is thread-safe.
    
    //go:build cgo && !netgo && (linux || openbsd)
    
    package net
    
    /*
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netdb.h>
    #include <unistd.h>
    #include <string.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 892 bytes
    - Viewed (0)
  2. src/net/cgo_unix.go

    	}
    	defer _C_res_nclose(state)
    
    	// Some res_nsearch implementations (like macOS) do not set errno.
    	// They set h_errno, which is not per-thread and useless to us.
    	// res_nsearch returns the size of the DNS response packet.
    	// But if the DNS response packet contains failure-like response codes,
    	// res_search returns -1 even though it has copied the packet into buf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/net/cgo_unix_cgo_resn.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // res_nsearch, for cgo systems where that's available.
    
    //go:build cgo && !netgo && unix && !(darwin || linux || openbsd)
    
    package net
    
    /*
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netdb.h>
    #include <unistd.h>
    #include <string.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 979 bytes
    - Viewed (0)
  4. src/net/cgo_unix_syscall.go

    func _C_res_ninit(state *_C_struct___res_state) error {
    	unix.ResNinit(state)
    	return nil
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_char, anslen int) int {
    	x, _ := unix.ResNsearch(state, dname, class, typ, ans, anslen)
    	return x
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	unix.ResNclose(state)
    }
    
    func cgoNameinfoPTR(b []byte, sa *syscall.RawSockaddr, salen int) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/net_darwin.go

    		uintptr(unsafe.Pointer(state)),
    		0, 0)
    }
    
    //go:cgo_import_dynamic libresolv_res_9_nsearch res_9_nsearch "/usr/lib/libresolv.9.dylib"
    func libresolv_res_9_nsearch_trampoline()
    
    func ResNsearch(state *ResState, dname *byte, class, typ int, ans *byte, anslen int) (int, error) {
    	r1, _, errno := syscall_syscall6(abi.FuncPCABI0(libresolv_res_9_nsearch_trampoline),
    		uintptr(unsafe.Pointer(state)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/PathTraversalChecker.java

         *
         * This code is used for path traversal, ZipSlip and TarSlip detection.
         *
         * <b>IMPLEMENTATION NOTE</b>
         * We do it this way instead of the way recommended in <a href="https://snyk.io/research/zip-slip-vulnerability"></a>
         * for performance reasons, calling {@link File#getCanonicalPath()} is too expensive.
         *
         * @throws IllegalArgumentException if the entry contains vulnerable sequences
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-shared/src/integTest/groovy/org/gradle/integtests/PathTraversalCheckerIntegrationTest.groovy

    import java.util.zip.ZipEntry
    import java.util.zip.ZipFile
    import java.util.zip.ZipOutputStream
    
    /**
     * Ensures Gradle core tasks and types are not subject to the
     * <a href="https://snyk.io/research/zip-slip-vulnerability">Zip Slip Vulnerability</a>.
     */
    class PathTraversalCheckerIntegrationTest extends AbstractIntegrationSpec {
    
        private TestFile getEvilZip() {
            file("evil.zip")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

      }
    
      @Test
      fun `certificate attributes`() {
        val certificate =
          HeldCertificate.Builder()
            .certificateAuthority(3)
            .commonName("Jurassic Park")
            .organizationalUnit("Gene Research")
            .addSubjectAlternativeName("*.example.com")
            .addSubjectAlternativeName("www.example.org")
            .validityInterval(-1000L, 2000L)
            .serialNumber(17L)
            .build()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package mvs implements Minimal Version Selection.
    // See https://research.swtch.com/vgo-mvs.
    package mvs
    
    import (
    	"fmt"
    	"slices"
    	"sort"
    	"sync"
    
    	"cmd/go/internal/par"
    
    	"golang.org/x/mod/module"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. docs/em/docs/history-design-future.md

    ## ๐Ÿ”ง
    
    โคด๏ธ ๐Ÿ‘ค ๐Ÿ’ธ ๐Ÿ•ฐ ๐Ÿ”ง ๐Ÿ‘ฉโ€๐Ÿ’ป "๐Ÿ› ๏ธ" ๐Ÿ‘ค ๐Ÿ’š โœ”๏ธ ๐Ÿ‘ฉโ€๐Ÿ’ป (๐Ÿ‘ฉโ€๐Ÿ’ป โš™๏ธ FastAPI).
    
    ๐Ÿ‘ค ๐Ÿ’ฏ ๐Ÿ“š ๐Ÿ’ญ ๐Ÿ† ๐ŸŒŸ ๐Ÿ ๐Ÿ‘จโ€๐ŸŽจ: ๐Ÿ—’, ๐Ÿ†š ๐Ÿ“Ÿ, ๐ŸŽ  ๐Ÿงข ๐Ÿ‘จโ€๐ŸŽจ.
    
    ๐Ÿ <a href="https://www.jetbrains.com/research/python-developers-survey-2018/#development-tools" class="external-link" target="_blank">๐Ÿ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ”ฌ</a>, ๐Ÿ‘ˆ ๐Ÿ“” ๐Ÿ”ƒ 8๏ธโƒฃ0๏ธโƒฃ ๐Ÿ’ฏ ๐Ÿ‘ฉโ€๐Ÿ’ป.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top