Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for foobody (0.15 sec)

  1. docs/recipes.md

    Use `FormBody.Builder` to build a request body that works like an HTML `<form>` tag. Names and values will be encoded using an HTML-compatible form URL encoding.
    
    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
          fun run() {
            val formBody = FormBody.Builder()
                .add("search", "Jurassic Park")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

        const XlaOpRegistry::DeviceRegistration& registration);
    
    // Given a FunctionLibraryRuntime and a `function`, returns this function's body
    // in `fbody` as well as the indices of its constant and resource arguments.
    // `fbody` is owned by `flr`.
    // `constant_arg_indices` and `resource_arg_indices` should be empty vector.
    // They are sorted in ascending order on this function's return.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. build/build-image/Dockerfile

    # Pick up version stuff here as we don't copy our .git over.
    ENV KUBE_GIT_VERSION_FILE=${HOME}/.dockerized-kube-version-defs
    
    # Add system-wide git user information
    RUN git config --system user.email "nobody@k8s.io" \
      && git config --system user.name "kube-build-image"
    
    # Fix permissions on gopath
    RUN chmod -R a+rwx $GOPATH
    
    # Make log messages use the right timezone
    ADD localtime /etc/localtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. src/syscall/mksyscall_windows.go

    		// users binaries separately from the original import paths), and we can't
    		// allow a binary in the "std" meta-pattern.
    		modArgs = []string{"-mod=readonly"}
    	} else {
    		// Nobody outside the standard library should be using this wrapper: other
    		// modules can vendor in the mkwinsyscall tool directly (as described in
    		// https://golang.org/issue/25922), so they don't need this wrapper to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. pkg/webhooks/validation/server/server_test.go

    			}
    
    			if res.StatusCode != http.StatusOK {
    				return
    			}
    
    			gotBody, err := io.ReadAll(res.Body)
    			if err != nil {
    				t.Fatalf("%v: could not read body: %v", c.name, err)
    			}
    			var gotReview admissionv1.AdmissionReview
    			if err := json.Unmarshal(gotBody, &gotReview); err != nil {
    				t.Fatalf("%v: could not decode response body: %v", c.name, err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

            communicator.stop()
            when:
            communicator.receive()
            then:
            thrown(GracefullyStoppedException)
        }
    
        def "pinging on a port that nobody listens is safe"() {
            when:
            communicator.pingOwner(6666, 166, "lock")
    
            then:
            noExceptionThrown()
        }
    
        def "can be stopped"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                script {
                    // Because we exclude tests in `distributions-integ-tests` below, `@Flaky` won't work in that subproject.
                    // Here we check the existence of `@Flaky` annotation to make sure nobody use that annotation in `distributions-integ-tests` subproject.
                    name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS"
                    executionMode = BuildStep.ExecutionMode.ALWAYS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/os/user/lookup_unix_test.go

    //go:build unix && !android && !cgo && !darwin
    
    package user
    
    import (
    	"reflect"
    	"strings"
    	"testing"
    )
    
    var groupTests = []struct {
    	in   string
    	name string
    	gid  string
    }{
    	{testGroupFile, "nobody", "-2"},
    	{testGroupFile, "kmem", "2"},
    	{testGroupFile, "notinthefile", ""},
    	{testGroupFile, "comment", ""},
    	{testGroupFile, "plussign", ""},
    	{testGroupFile, "+plussign", ""},
    	{testGroupFile, "-minussign", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  9. docs/contribute/concurrency.md

    The application-layer can also do blocking reads. If the application asks to read and there's nothing available, we need to hold that thread until either the bytes arrive, the stream is closed, or a timeout elapses. If we get bytes but there's nobody asking for them, we buffer them. We don't consider bytes as delivered for flow control until they're consumed by the application.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. src/os/user/listgroups_unix_test.go

    package user
    
    import (
    	"fmt"
    	"slices"
    	"strings"
    	"testing"
    )
    
    var testGroupFile = `# See the opendirectoryd(8) man page for additional
    # information about Open Directory.
    ##
    nobody:*:-2:
    nogroup:*:-1:
    wheel:*:0:root
    emptyid:*::root
    invalidgid:*:notanumber:root
    +plussign:*:20:root
    -minussign:*:21:root
    # Next line is invalid (empty group name)
    :*:22:root
    
    daemon:*:1:root
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top