Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 134 for exportable (0.14 sec)

  1. src/crypto/tls/cipher_suites.go

    //
    // The list is sorted by applying the following priority rules, stopping at the
    // first (most important) applicable one:
    //
    //   - Anything else comes before RC4
    //
    //     RC4 has practically exploitable biases. See https://www.rc4nomore.com.
    //
    //   - Anything else comes before CBC_SHA256
    //
    //     SHA-256 variants of the CBC ciphersuites don't implement any Lucky13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_386.s

    // The benchmarks also showed that using int $0x80 is as fast as calling
    // *%gs:0x10 except on AMD Opteron. See https://golang.org/cl/19833
    // for the benchmark program and raw data.
    //#define INVOKE_SYSCALL	CALL	0x10(GS) // non-portable
    #define INVOKE_SYSCALL	INT	$0x80
    
    #define SYS_exit		1
    #define SYS_read		3
    #define SYS_write		4
    #define SYS_open		5
    #define SYS_close		6
    #define SYS_getpid		20
    #define SYS_access		33
    #define SYS_kill		37
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// risky unless you take great care to run this webhook on all hosts
    	// which run an apiserver which might need to make calls to this
    	// webhook. Such installs are likely to be non-portable, i.e., not easy
    	// to turn up in a new cluster.
    	//
    	// The scheme must be "https"; the URL must begin with "https://".
    	//
    	// A path is optional, and if present may be any string permissible in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/import.go

    	}
    	if filepath.IsAbs(path) {
    		return invalidf("%q is not a package path; see 'go help packages'", path)
    	}
    	if search.IsMetaPackage(path) {
    		return invalidf("%q is not an importable package; see 'go help packages'", path)
    	}
    
    	if path == "C" {
    		// There's no directory for import "C".
    		return module.Version{}, "", "", nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. src/net/net.go

    // Copyright 2009 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 net provides a portable interface for network I/O, including
    TCP/IP, UDP, domain name resolution, and Unix domain sockets.
    
    Although the package provides access to low-level networking
    primitives, most clients will need only the basic interface provided
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// risky unless you take great care to run this webhook on all hosts
    	// which run an apiserver which might need to make calls to this
    	// webhook. Such installs are likely to be non-portable, i.e., not easy
    	// to turn up in a new cluster.
    	//
    	// The scheme must be "https"; the URL must begin with "https://".
    	//
    	// A path is optional, and if present may be any string permissible in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug_test.go

    		for j, hvt := range hv {
    			if hvt != kv[j] {
    				return false
    			}
    		}
    	}
    
    	return true
    }
    
    // canonFileName strips everything before "/src/" from a filename.
    // This makes file names portable across different machines,
    // home directories, and temporary directories.
    func canonFileName(f string) string {
    	i := strings.Index(f, "/src/")
    	if i != -1 {
    		f = f[i+1:]
    	}
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// risky unless you take great care to run this webhook on all hosts
    	// which run an apiserver which might need to make calls to this
    	// webhook. Such installs are likely to be non-portable, i.e., not easy
    	// to turn up in a new cluster.
    	//
    	// The scheme must be "https"; the URL must begin with "https://".
    	//
    	// A path is optional, and if present may be any string permissible in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top