Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 615 for chain (0.45 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		ae := audit.AuditEventFrom(r.Context())
    		if ae == nil {
    			t.Error("unexpected nil audit event")
    		}
    
    		// confirm that the indirect way of setting audit annotations later in the chain also works
    		audit.AddAuditAnnotation(r.Context(), "dogs", "are okay")
    
    		if _, err := w.Write([]byte("done")); err != nil {
    			t.Errorf("failed to write response: %v", err)
    		}
    	}), c)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/text/template/doc.go

    	Argument
    		The result is the value of evaluating the argument.
    	.Method [Argument...]
    		The method can be alone or the last element of a chain but,
    		unlike methods in the middle of a chain, it can take arguments.
    		The result is the value of calling the method with the
    		arguments:
    			dot.Method(Argument1, etc.)
    	functionName [Argument...]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	assert.Equal(http.StatusOK, resp.StatusCode)
    
    	body, err = io.ReadAll(resp.Body)
    	assert.NoError(err)
    	assert.Equal(newSpec, body)
    }
    
    // TestCustomHandlerChain verifies the handler chain with custom handler chain builder functions.
    func TestCustomHandlerChain(t *testing.T) {
    	config, _ := setUp(t)
    
    	var protected, called bool
    
    	config.BuildHandlerChainFunc = func(apiHandler http.Handler, c *Config) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. src/go/types/named.go

    // heading.
    
    // under returns the expanded underlying type of n0; possibly by following
    // forward chains of named types. If an underlying type is found, resolve
    // the chain by setting the underlying type for each defined type in the
    // chain before returning it. If no underlying type is found or a cycle
    // is detected, the result is Typ[Invalid]. If a cycle is detected and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    The target machine expresses which machines the application expects to run.
    A target machine is identified by its operating system and architecture.
    Gradle uses the target machine to decide which tool chain to choose based on availability on the host machine.
    
    The target machine can be configured as follows:
    
    .Configure application target machines
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/config.go

    	runtime.ContentTypeJSON,
    	runtime.ContentTypeYAML,
    	runtime.ContentTypeProtobuf,
    }
    
    // New creates a new server which logically combines the handling chain with the passed server.
    // name is used to differentiate for logging. The handler chain in particular can be difficult as it starts delegating.
    // delegationTarget may not be nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    The target machine expresses which machines the application expects to run.
    A target machine is identified by its operating system and architecture.
    Gradle uses the target machine to decide which tool chain to choose based on availability on the host machine.
    
    The target machine can be configured as follows:
    
    .Configure application target machines
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. pkg/wasm/imagefetcher.go

    func NewImageFetcher(ctx context.Context, opt ImageFetcherOption) *ImageFetcher {
    	fetchOpts := make([]remote.Option, 0, 2)
    	// TODO(mathetake): have "Anonymous" option?
    	if opt.useDefaultKeyChain() {
    		// Note that default key chain reads the docker config from DOCKER_CONFIG
    		// so must set the envvar when reaching this branch is expected.
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(authn.DefaultKeychain))
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    type Stage string
    
    // Valid audit stages.
    const (
    	// The stage for events generated as soon as the audit handler receives the request, and before it
    	// is delegated down the handler chain.
    	StageRequestReceived Stage = "RequestReceived"
    	// The stage for events generated once the response headers are sent, but before the response body
    	// is sent. This stage is only generated for long-running requests (e.g. watch).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            expect:
            def result = resolve(include('TEST(FILENAME, _NAME, ~)'))
            result.complete
            result.files.file as List == [header]
        }
    
        def "can chain token concatenations with parameter substitutions"() {
            given:
            def header = systemIncludeDir.createFile("test.h")
    
            macros << macro("FILENAME", '"test.h"')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top