Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 364 for chains (0.12 sec)

  1. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

       * Contains the logical entries, in the range of [0, size()). The high 32 bits of each long is the
       * smeared hash of the element, whereas the low 32 bits is the "next" pointer (pointing to the
       * next entry in the bucket chain). The pointers in [size(), entries.length) are all "null"
       * (UNSET).
       */
      @VisibleForTesting transient long[] entries;
    
      /** The load factor. */
      private transient float loadFactor;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		return nil, nil, errCorrupt // more likely our math is wrong
    	}
    
    	// Link record into hash chain, making sure not to introduce a duplicate.
    	// We know name does not appear in the chain starting at head.
    	for {
    		next.Store(head)
    		if m.cas32(headOff, head, start) {
    			return v, nil, nil
    		}
    
    		// Check new elements in chain for duplicates.
    		old := head
    		head = m.load32(headOff)
    		for off := head; off != old; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    name: istio-cni-config namespace: kube-system labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" data: # The CNI network configuration to add to the plugin chain on each node. The special # values in this config will be automatically populated. cni_network_config: |- { "cniVersion": "0.3.1", "name": "istio-cni", "type": "istio-cni", "log_level": "info", "log_uds_address": "__LOG_UDS_ADDRESS__", "kubernetes":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

              break;
            }
          }
        }
      }
    
      /**
       * Represents a detected cycle in lock acquisition ordering. The exception includes a causal chain
       * of {@code ExampleStackTrace} instances to illustrate the cycle, e.g.
       *
       * <pre>
       * com....PotentialDeadlockException: Potential Deadlock from LockC -&gt; ReadWriteA
       *   at ...
       *   at ...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

        def "adds model extensions"() {
            expect:
            toolChains != null
            platforms != null
            buildTypes != null
            flavors != null
        }
    
        def "does not provide a default tool chain"() {
            expect:
            realizeModelElement("toolChains", NativeToolChainRegistry).isEmpty()
        }
    
        def "adds default flavor to every binary"() {
            when:
            project.model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. 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)
Back to top