Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for Invokes (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

            }
    
            where:
            expression      | _
            "version"       | _
            "this.version"  | _
            "owner.version" | _
        }
    
        def "from-cache build fails when task action closure invokes a project method"() {
            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        println(file("broken"))
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/os/signal/doc.go

    If the non-Go code starts a new thread, changes the signal mask, and
    then invokes a Go function in that thread, the Go runtime will
    automatically unblock certain signals: the synchronous signals,
    SIGILL, SIGTRAP, SIGSTKFLT, SIGCHLD, SIGPROF, SIGCANCEL, and
    SIGSETXID. When the Go function returns, the non-Go signal mask will
    be restored.
    
    If the Go signal handler is invoked on a non-Go thread not running Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    			return lifecycle.PodAdmitResult{Admit: false, Reason: "Rejected", Message: "Pod is rejected"}
    		}
    	}
    	return lifecycle.PodAdmitResult{Admit: true}
    }
    
    // Test verifies that the kubelet invokes an admission handler during HandlePodAdditions.
    func TestHandlePodAdditionsInvokesPodAdmitHandlers(t *testing.T) {
    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    	defer testKubelet.Cleanup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    // build list.
    //
    // loadPackages invokes the findPackage function for each package loaded from a
    // module outside the main module. If the module or version that supplies that
    // package needs to be changed due to a query, findPackage may return false
    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    See https://golang.org/s/go15vendor for details.
    	`,
    }
    
    var HelpEnvironment = &base.Command{
    	UsageLine: "environment",
    	Short:     "environment variables",
    	Long: `
    
    The go command and the tools it invokes consult environment variables
    for configuration. If an environment variable is unset or empty, the go
    command uses a sensible default setting. To see the effective setting of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // If the -exec flag is given, 'go run' invokes the binary using xprog:
    //
    //	'xprog a.out arguments...'.
    //
    // If the -exec flag is not given, GOOS or GOARCH is different from the system
    // default, and a program named go_$GOOS_$GOARCH_exec can be found
    // on the current search path, 'go run' invokes the binary using that program,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		overlayPath = p
    	}
    	output, err := sh.runOut(filepath.Dir(overlayPath), b.cCompilerEnv(), compiler, flags, "-o", outfile, "-c", filepath.Base(overlayPath))
    
    	// On FreeBSD 11, when we pass -g to clang 3.8 it
    	// invokes its internal assembler with -dwarf-version=2.
    	// When it sees .section .note.GNU-stack, it warns
    	// "DWARF2 only supports one section per compilation unit".
    	// This warning makes no sense, since the section is empty,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     * - validations registered via [ObjectInputStream.registerValidation] are simply ignored;
     * - the `readObjectNoData` method, if present, is never invoked;
     */
    class JavaObjectSerializationCodec(
        private val lookup: JavaSerializationEncodingLookup
    ) : EncodingProducer, Decoding {
    
        private
        val readResolveMethod = MethodCache { isReadResolve() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/sync/once.go

    //
    // if once.Do(f) is called multiple times, only the first call will invoke f,
    // even if f has a different value in each invocation. A new instance of
    // Once is required for each function to execute.
    //
    // Do is intended for initialization that must be run exactly once. Since f
    // is niladic, it may be necessary to use a function literal to capture the
    // arguments to a function to be invoked by Do:
    //
    //	config.once.Do(func() { config.init(filename) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	wrapped.ServeHTTP(w, testRequest)
    
    	if handlerCallCount != 1 {
    		t.Errorf("expected the given handler to be invoked once, but was actually invoked %d times", handlerCallCount)
    	}
    	if actionCallCount != 1 {
    		t.Errorf("expected the action callback to be invoked once, but was actually invoked %d times", actionCallCount)
    	}
    	if filterRecordGot == nil {
    		t.Fatal("expected a filter record in the request context, but got nil")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top