Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 958 for wcap (0.1 sec)

  1. pkg/test/failer.go

    // The function must be called within a goroutine, or calls to Fatal will try to terminate the outer
    // test context, which will cause the test to panic. The Wrap function handles this automatically
    type errorWrapper struct {
    	mu      sync.RWMutex
    	failed  error
    	cleanup func()
    }
    
    // Wrap executes a function with a fake Failer, and returns an error if the test failed. This allows
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildToolingModelController.kt

            return wrap(delegate.locateBuilderForTarget(modelName, param))
        }
    
        override fun locateBuilderForTarget(target: ProjectState, modelName: String, param: Boolean): ToolingModelScope {
            return wrap(delegate.locateBuilderForTarget(target, modelName, param))
        }
    
        private
        fun wrap(scope: ToolingModelScope): ToolingModelScope {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue4085b.go

    		shouldPanic("len out of range", func() { _ = make(T, int(n2)) })
    		shouldPanic("cap out of range", func() { _ = make(T, 0, int(n2)) })
    		testMakeInAppend(int(n2))
    		// Test elem.size*cap overflow
    		n2 = 1<<63 - 1
    		shouldPanic("len out of range", func() { _ = make(T, int(n2)) })
    		shouldPanic("cap out of range", func() { _ = make(T, 0, int(n2)) })
    		testMakeInAppend(int(n2))
    		var x uint64 = 1<<64 - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 17 17:18:17 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/copycerts/copycerts.go

    	decodedKey, err := hex.DecodeString(key)
    	if err != nil {
    		return errors.Wrap(err, "error decoding certificate key")
    	}
    
    	secret, err := getSecret(client)
    	if err != nil {
    		return errors.Wrap(err, "error downloading the secret")
    	}
    
    	secretData, err := getDataFromSecret(secret, decodedKey)
    	if err != nil {
    		return errors.Wrap(err, "error decoding secret data with provided key")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/streams/SafeStreams.java

    public class SafeStreams {
    
        public static OutputStream systemErr() {
            return CloseShieldOutputStream.wrap(System.err);
        }
    
        public static InputStream emptyInput() {
            return new ByteArrayInputStream(new byte[0]);
        }
    
        public static OutputStream systemOut() {
            return CloseShieldOutputStream.wrap(System.out);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 22 09:47:12 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/QueueDispatcher.kt

      fun enqueueResponse(response: MockResponse) {
        delegate.enqueueResponse(response.wrap())
      }
    
      override fun shutdown() {
        delegate.shutdown()
      }
    
      fun setFailFast(failFast: Boolean) {
        delegate.setFailFast(failFast)
      }
    
      fun setFailFast(failFastResponse: MockResponse?) {
        delegate.setFailFast(failFastResponse?.wrap())
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Oct 18 12:55:43 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/conversion_macros.h

      }                                                                            \
                                                                                   \
      inline wrapper *wrap(cpp_impl *i) { return reinterpret_cast<wrapper *>(i); } \
      inline const wrapper *wrap(const cpp_impl *i) {                              \
        return reinterpret_cast<const wrapper *>(i);                               \
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 04 16:24:03 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/internal/signature_def_function_metadata.cc

        const TF_SignatureDefFunctionMetadata* list) {
      return tensorflow::wrap(&tensorflow::unwrap(list)->arguments());
    }
    
    extern const TF_SignatureDefParamList* TF_SignatureDefFunctionMetadataReturns(
        const TF_SignatureDefFunctionMetadata* list) {
      return tensorflow::wrap(&tensorflow::unwrap(list)->returns());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/os_linux_ppc64x.go

    package runtime
    
    import "internal/cpu"
    
    func archauxv(tag, val uintptr) {
    	switch tag {
    	case _AT_HWCAP:
    		// ppc64x doesn't have a 'cpuid' instruction
    		// equivalent and relies on HWCAP/HWCAP2 bits for
    		// hardware capabilities.
    		cpu.HWCap = uint(val)
    	case _AT_HWCAP2:
    		cpu.HWCap2 = uint(val)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 526 bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/style.css

    	font-size: 120%;
    	font-weight: 600;
    }
    
    section.content table {
    	display: table;
    	table-layout: fixed;
    	width
    }
    
    section.content table td {
    	display: table-cell;
    	word-wrap: break-word;
    	overflow-wrap: break-word;
    }
    
    section.content table .label {
    	color: #fff;
    }
    
    textarea.systemInfoData {
    	height: 22em;
    	line-height: 1.5em;
    }
    
    .login-box {
    	height: 500px;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top