Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 650 for necessarily (0.15 sec)

  1. src/runtime/testdata/testprogcgo/deadlock.go

    }
    */
    import "C"
    import (
    	"fmt"
    )
    
    func init() {
    	register("CgoPanicDeadlock", CgoPanicDeadlock)
    }
    
    type cgoError struct{}
    
    func (cgoError) Error() string {
    	fmt.Print("") // necessary to trigger the deadlock
    	return C.GoString(C.geterror())
    }
    
    func CgoPanicDeadlock() {
    	panic(cgoError{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 509 bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/lib/ext/hazelcast/README.txt

    This directory is intended to contain Hazelcast [1] JARs for Maven Resolver Named Locks using Hazelcast.
    
    See here [2] on how to add necessary JARs.
    
    [1] https://github.com/hazelcast/hazelcast
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Aug 23 19:41:57 UTC 2022
    - 300 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    	preflight     	Run control-plane pre-flight checks
    	certs         	Generates all PKI assets necessary to establish the control plane
    		/ca             Generates a self-signed Kubernetes CA to provision identities for Kubernetes components
    		/apiserver      Generates an API server serving certificate and key
    		...
    	kubeconfig		Generates all kubeconfig files necessary to establish the control plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue8036.go

    // run
    
    // Copyright 2014 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.
    
    // Issue 8036. Stores necessary for stack scan being eliminated as redundant by optimizer.
    
    package main
    
    import "runtime"
    
    type T struct {
    	X *int
    	Y *int
    	Z *int
    }
    
    type TI [3]uintptr
    
    //go:noinline
    func G() (t TI) {
    	t[0] = 1
    	t[1] = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 633 bytes
    - Viewed (0)
  5. mockwebserver-junit4/README.md

    ```
    
    The `serverRule` field has a `server` field. It is an instance of `MockWebServer`. That instance
    will be shut down automatically after the test runs.
    
    For Kotlin, the `@JvmField` annotation is also necessary:
    
    ```
    @JvmField @Rule val serverRule = MockWebServerRule()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 707 bytes
    - Viewed (0)
  6. src/runtime/rt0_android_386.s

    DATA _rt0_386_android_argv+0x08(SB)/4,$0  // envp terminate
    DATA _rt0_386_android_argv+0x0c(SB)/4,$0  // auxv terminate
    GLOBL _rt0_386_android_argv(SB),NOPTR,$0x10
    
    // TODO: wire up necessary VDSO (see os_linux_386.go)
    
    DATA _rt0_386_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 21 04:56:36 UTC 2018
    - 822 bytes
    - Viewed (0)
  7. pkg/controller/bootstrap/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package bootstrap provides automatic processes necessary for bootstraping.
    // This includes managing and expiring tokens along with signing well known
    // configmaps with those tokens.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 20:47:25 UTC 2017
    - 831 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/tflite-op-request.md

    
    **Provide the text output from tflite_convert**
    
    ```
    # Copy and paste here
    ```
    
    **Standalone code to reproduce the issue** 
    Provide a reproducible test case that is the bare minimum necessary to generate
    the problem. If possible, please share a link to Colab/Jupyter/any notebook.
    
    Also, please include a link to a GraphDef or the model if possible.
    
    **Any other info / logs**
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 879 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ResettableExpectations.java

     */
    
    package org.gradle.test.fixtures;
    
    /**
     * Allows {@link org.gradle.integtests.fixtures.ToBeFixedForConfigurationCacheExtension} to verify
     * test expectations before cleanup so they can be silenced if necessary.
     */
    public interface ResettableExpectations {
        /**
         * Resets all pending expectations after verifying them.
         * Must throw when a verification fails.
         */
        void resetExpectations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/graal/OkHttpFeature.kt

    import org.graalvm.nativeimage.hosted.Feature
    import org.graalvm.nativeimage.hosted.RuntimeResourceAccess
    
    /**
     * Automatic configuration of OkHttp for native images.
     *
     * Currently, includes all necessary resources.
     */
    class OkHttpFeature : Feature {
      @IgnoreJRERequirement
      override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess?) {
        RuntimeResourceAccess.addResource(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top