Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for pinyin (0.26 sec)

  1. src/syscall/ztypes_linux_arm.go

    	XCASE    = 0x4
    	ECHO     = 0x8
    	ECHOE    = 0x10
    	ECHOK    = 0x20
    	ECHONL   = 0x40
    	NOFLSH   = 0x80
    	TOSTOP   = 0x100
    	ECHOCTL  = 0x200
    	ECHOPRT  = 0x400
    	ECHOKE   = 0x800
    	FLUSHO   = 0x1000
    	PENDIN   = 0x4000
    	IEXTEN   = 0x8000
    	TCGETS   = 0x5401
    	TCSETS   = 0x5402
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/net/lookup_windows_test.go

    	return r, nil
    }
    
    func lookupPTR(name string) (ptr []string, err error) {
    	var r string
    	if r, err = ping(name); err != nil {
    		return
    	}
    	ptr = make([]string, 0, 10)
    	rx := regexp.MustCompile(`(?m)^Pinging\s+([a-zA-Z0-9.\-]+)\s+\[.*$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		ptr = append(ptr, absDomainName(ans[1]))
    	}
    	return
    }
    
    func localIP() (ip IP, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/syscall/ztypes_linux_386.go

    	XCASE    = 0x4
    	ECHO     = 0x8
    	ECHOE    = 0x10
    	ECHOK    = 0x20
    	ECHONL   = 0x40
    	NOFLSH   = 0x80
    	TOSTOP   = 0x100
    	ECHOCTL  = 0x200
    	ECHOPRT  = 0x400
    	ECHOKE   = 0x800
    	FLUSHO   = 0x1000
    	PENDIN   = 0x4000
    	IEXTEN   = 0x8000
    	TCGETS   = 0x5401
    	TCSETS   = 0x5402
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. src/runtime/pinner.go

    		panic(errorString("runtime.Pinner: argument is not a pointer: " + toRType(etyp).string()))
    	}
    	if inUserArenaChunk(uintptr(e.data)) {
    		// Arena-allocated objects are not eligible for pinning.
    		panic(errorString("runtime.Pinner: object was allocated into an arena"))
    	}
    	return e.data
    }
    
    // isPinned checks if a Go pointer is pinned.
    // nosplit, because it's called from nosplit code in cgocheck.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/syscall/mkerrors.sh

    		$2 ~ /^IGN/ ||
    		$2 ~ /^IX(ON|ANY|OFF)$/ ||
    		$2 ~ /^IN(LCR|PCK)$/ ||
    		$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
    		$2 ~ /^C(LOCAL|READ)$/ ||
    		$2 == "BRKINT" ||
    		$2 == "HUPCL" ||
    		$2 == "PENDIN" ||
    		$2 == "TOSTOP" ||
    		$2 ~ /^PAR/ ||
    		$2 ~ /^SIG[^_]/ ||
    		$2 ~ /^O[CNPFP][A-Z]+[^_][A-Z]+$/ ||
    		$2 ~ /^IN_/ ||
    		$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"ì":                          "\u00ec",
    	"ⅈ":                              "\u2148",
    	"⨌":                          "\u2a0c",
    	"∭":                           "\u222d",
    	"⧜":                          "\u29dc",
    	"℩":                           "\u2129",
    	"ij":                           "\u0133",
    	"ī":                           "\u012b",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

                tasks.addRule("Pattern: ping<ID>") { String taskName ->
                    if (taskName.startsWith("ping")) {
                        task(taskName) {
                            doLast {
                                println "Pinging: " + (taskName - 'ping')
                            }
                        }
                    }
                }
            """
    
            when:
            succeeds tasks
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *           CU_FALSE otherwise.
     *  @see CU_initialize_registry
     *  @see CU_cleanup_registry
     */
    
    CU_EXPORT 
    CU_pSuite CU_add_suite(const char *strName, 
                           CU_InitializeFunc pInit, 
                           CU_CleanupFunc pClean);
    /**<
     *  Creates a new test suite and adds it to the test registry.
     *  This function creates a new test suite having the specified
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

        // 3. This connection's server certificate's must cover the new host.
        if (address.hostnameVerifier !== OkHostnameVerifier) return false
        if (!supportsUrl(address.url)) return false
    
        // 4. Certificate pinning must match the host.
        try {
          address.certificatePinner!!.check(address.url.host, handshake()!!.peerCertificates)
        } catch (_: SSLPeerUnverifiedException) {
          return false
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api.cc

        TF_Status status;
        // Let this custom device choose the device to pin this op on if it
        // implements the pinning function.
        if (device_.shall_pin_to_this_device != nullptr) {
          return device_.shall_pin_to_this_device(tensorflow::wrap(op), &status);
        }
        return errors::Unimplemented("No custom device pinning implementation.");
      }
    
     private:
      TFE_Context* context_;
      TFE_CustomDevice device_;
      void* info_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top