Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 292 for nuts (0.08 sec)

  1. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                endpoints across all namespaces."
                              type: string
                            nets:
                              description: Nets is an optional field that restricts the
                                rule to only apply to traffic that originates from (or
                                terminates at) IP addresses in any of the given subnets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  2. internal/config/notify/help.go

    			Key:         target.NATSAddress,
    			Description: "NATS server address e.g. '0.0.0.0:4222'",
    			Type:        "address",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         target.NATSSubject,
    			Description: "NATS subscription subject",
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         target.NATSUsername,
    			Description: "NATS username",
    			Optional:    true,
    			Type:        "string",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. internal/event/target/nats_tls_contrib_test.go

     * limitations under the License.
     */
    
    package target
    
    import (
    	"path"
    	"path/filepath"
    	"testing"
    
    	xnet "github.com/minio/pkg/v3/net"
    	natsserver "github.com/nats-io/nats-server/v2/test"
    )
    
    func TestNatsConnTLSCustomCA(t *testing.T) {
    	s, opts := natsserver.RunServerWithConfig(filepath.Join("testdata", "contrib", "nats_tls.conf"))
    	defer s.Shutdown()
    
    	clientConfig := &NATSArgs{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_dotgo.go_v1.0.0.txt

    This module's path ends with ".go".
    Based on github.com/nats-io/nats.go.
    Used in regression tests for golang.org/issue/32483.
    
    -- .mod --
    module example.com/dotgo.go
    
    go 1.13
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/dotgo.go
    
    go 1.13
    -- dotgo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 11 20:19:25 UTC 2019
    - 287 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    def quantfork_QuantizeCastOp : quantfork_Op<"qcast", [Pure]> {
      let arguments = (ins quant_RealValueType:$arg);
      let results = (outs quant_RealValueType);
    }
    
    // A DequantizeCast op (dcast) represents the inverse of a qcast,
    // converting back from a quantized to quantizable (expressed) type.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    notify_nats[:name]  publish bucket notifications to NATS endpoints
    
    ARGS:
    address*                          (address)   NATS server address e.g. '0.0.0.0:4222'
    subject*                          (string)    NATS subscription subject
    username                          (string)    NATS username
    password                          (string)    NATS password
    token                             (string)    NATS token
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

            def spec = { it < 5 }
            def filter = { Integer[] nums -> filter(nums as List, spec) }
    
            expect:
            filter(1, 2, 3) == [1, 2, 3]
            filter(7, 8, 9) == []
            filter() == []
            filter(4, 5, 6) == [4]
        }
    
        def "array filtering"() {
            given:
            def spec = { it < 5 }
            def filter = { Integer[] nums -> filter(nums, spec) }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/PredicatesTest.java

      public void testIn_compilesWithExplicitSupertype() {
        Collection<Number> nums = ImmutableSet.of();
        Predicate<Number> p1 = Predicates.in(nums);
        Predicate<Object> p2 = Predicates.<Object>in(nums);
        // The next two lines are not expected to compile.
        // Predicate<Integer> p3 = Predicates.in(nums);
        // Predicate<Integer> p4 = Predicates.<Integer>in(nums);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. go.mod

    	github.com/minio/simdjson-go v0.4.5
    	github.com/minio/sio v0.4.0
    	github.com/minio/xxml v0.0.3
    	github.com/minio/zipindex v0.3.0
    	github.com/mitchellh/go-homedir v1.1.0
    	github.com/nats-io/nats-server/v2 v2.9.23
    	github.com/nats-io/nats.go v1.35.0
    	github.com/nats-io/stan.go v0.10.4
    	github.com/ncw/directio v1.0.5
    	github.com/nsqio/go-nsq v1.1.0
    	github.com/philhofer/fwd v1.1.2
    	github.com/pierrec/lz4 v2.6.1+incompatible
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

        initializes the TF EagerContext and returns an output chain.
    
        Example:
          %c1 = "tfd.init_eager_context"(%c0): (!tfrt.chain) -> !tfrt.chain
      }];
    
      let arguments = (ins TFRT_ChainType);
      let results = (outs TFRT_ChainType);
    }
    
    def DelegateKernelOp : RuntimeFallbackDialect_Op<"delegate_kernel"> {
      let summary = "delegate kernel operation";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top