Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for Single (0.12 sec)

  1. common/scripts/metallb-native.yaml

                        matchLabels:
                          additionalProperties:
                            type: string
                          description: matchLabels is a map of {key,value} pairs. A single
                            {key,value} in the matchLabels map is equivalent to an element
                            of matchExpressions, whose key field is "key", the operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    		}
    	}
    	return out
    }
    
    func (tsts authzTests) RunAll(t framework.TestContext) {
    	t.Helper()
    
    	firstTest := tsts[0]
    	if len(tsts) == 1 {
    		// Testing a single port. Just run a single test.
    		testName := fmt.Sprintf("%s%s(%s)/%s", firstTest.prefix, firstTest.opts.HTTP.Path, firstTest.allow, firstTest.opts.Port.Name)
    		t.NewSubTest(testName).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // repeated until we hit "start+s.elemsize".
    // This tiling algorithm supports array data, since the type always refers to
    // the element type of the array. Single objects are considered the same as
    // single-element arrays.
    // The tiling algorithm may scan data past the end of the compiler-recognized
    // object, but any unused data within the allocation slot (i.e. within s.elemsize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. cmd/object-api-listobjects_test.go

    	}
    }
    
    // Wrapper for calling ListObjectsOnVersionedBuckets tests for both
    // Erasure multiple disks and single node setup.
    func TestListObjectsOnVersionedBuckets(t *testing.T) {
    	ExecObjectLayerTest(t, testListObjectsOnVersionedBuckets)
    }
    
    // Wrapper for calling ListObjects tests for both Erasure multiple
    // disks and single node setup.
    func TestListObjects(t *testing.T) {
    	ExecObjectLayerTest(t, testListObjects)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    // made generalized, and can be integrated in benchmarks/unit tests/go check suite tests.
    type TestErrHandler interface {
    	testing.TB
    }
    
    const (
    	// ErasureSDStr is the string which is used as notation for Single node ObjectLayer in the unit tests.
    	ErasureSDStr string = "ErasureSD"
    
    	// ErasureTestStr is the string which is used as notation for Erasure ObjectLayer in the unit tests.
    	ErasureTestStr string = "Erasure"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    }
    
    func mergeTCPFilterChains(current *outboundListenerEntry, incoming []*filterChainOpts, opts outboundListenerOpts) {
    	// TODO(rshriram) merge multiple identical filter chains with just a single destination CIDR based
    	// filter chain match, into a single filter chain and array of destinationcidr matches
    
    	// The code below checks for TCP over TCP conflicts and merges listeners
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:parallel_compilation]]
    == Parallel Compilation
    
    Gradle uses the single build worker pool to concurrently compile and link native components, by default. No special configuration is required to enable concurrent building.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          self,
          input_type: dtypes.DType,
          filter_shape: Sequence[int],
          is_qat_model: bool = False,
      ) -> module.Module:
        class SimpleGatherAndConvModel(module.Module):
          """A simple model with a single gather and a conv2d."""
    
          def __init__(self):
            """Initializes a SimpleGatherAndConvModel."""
            self.embedding_w = np.random.randn(1024, 3, 4, 3).astype('f4')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		}
    		if len(routes) == 0 {
    			continue
    		}
    		if _, f := routeMap[routeKey]; !f {
    			routeMap[routeKey] = make(map[string]*config.Config)
    		}
    
    		// Create one VS per hostname with a single hostname.
    		// This ensures we can treat each hostname independently, as the spec requires
    		for _, h := range vsHosts {
    			if !parent.hostnameAllowedByIsolation(h) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

    /**
     * Factory for [calls][Call], which can be used to send HTTP requests and read their responses.
     *
     * ## OkHttpClients Should Be Shared
     *
     * OkHttp performs best when you create a single `OkHttpClient` instance and reuse it for all of
     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top