Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for undetectable (1.52 sec)

  1. cni/pkg/install/cniconfig_test.go

    		},
    		{
    			name:              "specified CNI config file undetectable",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "undetectable.file",
    			expectedConfName:  "undetectable.file",
    			goldenConfName:    "list.conflist.golden",
    			existingConfFiles: map[string]string{"bridge.conf": "bridge.conf", "list.conflist": "undetectable.file"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. src/syscall/forkpipe2.go

    // new fds that are not yet close-on-exec before we fork.
    // But that forces all fork calls to be serialized, which is bad.
    // But we haven't promised that serialization, and it is essentially
    // undetectable by other users of ForkLock, which is good.
    // Avoid the serialization by ensuring that ForkLock is locked
    // at the first fork and unlocked when there are no more forks.
    func acquireForkLock() {
    	forkingLock.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 19:19:59 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            javaClassFile("Foo.class").assertExists()
            assertJdkWasDownloaded()
    
            when: "the marker file of the auto-provisioned JDK is deleted, making the JDK not detectable"
            //delete marker file to make the previously downloaded installation undetectable
            def markerFile = findMarkerFile(executer.gradleUserHomeDir.file("jdks"))
            markerFile.delete()
            assert !markerFile.exists()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/evented.go

    	defer e.runningMu.Unlock()
    	if !isEventedPLEGInUse() {
    		return
    	}
    	setEventedPLEGUsage(false)
    	close(e.stopCh)
    	close(e.stopCacheUpdateCh)
    }
    
    // In case the Evented PLEG experiences undetectable issues in the underlying
    // GRPC connection there is a remote chance the pod might get stuck in a
    // given state while it has progressed in its life cycle. This function will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0.txt

    example.com/cmd contains main packages.
    
    v1.0.0 is the latest non-retracted version. Other versions contain errors or
    detectable problems.
    
    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    -- a/a.go --
    package main
    
    import "fmt"
    
    func main() { fmt.Println("a@v1.0.0") }
    -- b/b.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 16:11:09 UTC 2021
    - 476 bytes
    - Viewed (0)
  6. test/fixedbugs/issue21687.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 21687: cmd/compile evaluates x twice in "x op= y", which was
    // detectable if evaluating y affects x.
    
    package main
    
    func ptrs() (int, int) {
    	one := 1
    	two := 2
    
    	x := &one
    	*x += func() int {
    		x = &two
    		return 0
    	}()
    
    	return one, two
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 18:10:17 UTC 2017
    - 940 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

     */
    class PluginDetectionIntegrationTest extends AbstractIntegrationSpec {
    
        public static final List<String> JAVA_PLUGIN_IDS = ["java", "org.gradle.java"]
    
        def "core plugins are detectable - applied by #appliedBy, detected by #detectedBy"() {
            buildFile << """
                def operations = []
                plugins.withId("$detectedBy") {
                    operations << 'withId for ' + it.class.simpleName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/runtime/mfinal.go

    	systemstack(func() {
    		if !addfinalizer(e.data, (*funcval)(f.data), nret, fint, ot) {
    			throw("runtime.SetFinalizer: finalizer already set")
    		}
    	})
    }
    
    // Mark KeepAlive as noinline so that it is easily detectable as an intrinsic.
    //
    //go:noinline
    
    // KeepAlive marks its argument as currently reachable.
    // This ensures that the object is not freed, and its finalizer is not run,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // This exception is thrown by (and only by) a failed Google Test
    // assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions
    // are enabled).  We derive it from std::runtime_error, which is for
    // errors presumably detectable only at run time.  Since
    // std::runtime_error inherits from std::exception, many testing
    // frameworks know how to extract and print the message inside it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // This exception is thrown by (and only by) a failed Google Test
    // assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions
    // are enabled).  We derive it from std::runtime_error, which is for
    // errors presumably detectable only at run time.  Since
    // std::runtime_error inherits from std::exception, many testing
    // frameworks know how to extract and print the message inside it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
Back to top