Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for exportable (0.24 sec)

  1. 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)
  2. 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)
  3. guava/src/com/google/common/net/MediaType.java

       * Developer Guide for Native Client Application Structure</a>.
       *
       * @since 20.0
       */
      public static final MediaType NACL_APPLICATION = createConstant(APPLICATION_TYPE, "x-nacl");
    
      /**
       * NaCl portable applications. For more information see <a
       * href="https://developer.chrome.com/native-client/devguide/coding/application-structure">the
       * Developer Guide for Native Client Application Structure</a>.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // numbers with a uniform distribution.  Unlike rand() and srand(), it
    // doesn't use global state (and therefore can't interfere with user
    // code).  Unlike rand_r(), it's portable.  An LCG isn't very random,
    // but it's good enough for our purposes.
    class GTEST_API_ Random {
     public:
      static const UInt32 kMaxRange = 1u << 31;
    
      explicit Random(UInt32 seed) : state_(seed) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

       * Developer Guide for Native Client Application Structure</a>.
       *
       * @since 20.0
       */
      public static final MediaType NACL_APPLICATION = createConstant(APPLICATION_TYPE, "x-nacl");
    
      /**
       * NaCl portable applications. For more information see <a
       * href="https://developer.chrome.com/native-client/devguide/coding/application-structure">the
       * Developer Guide for Native Client Application Structure</a>.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // numbers with a uniform distribution.  Unlike rand() and srand(), it
    // doesn't use global state (and therefore can't interfere with user
    // code).  Unlike rand_r(), it's portable.  An LCG isn't very random,
    // but it's good enough for our purposes.
    class GTEST_API_ Random {
     public:
      static const UInt32 kMaxRange = 1u << 31;
    
      explicit Random(UInt32 seed) : state_(seed) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pe.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.
    
    // PE (Portable Executable) file writing
    // https://docs.microsoft.com/en-us/windows/win32/debug/pe-format
    
    package ld
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/pe"
    	"encoding/binary"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is 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.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top