Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 582 for SIMPLE (0.09 sec)

  1. pilot/pkg/security/authz/builder/builder_test.go

    			input:    "simple-policy-td-aliases-in.yaml",
    			want:     []string{"simple-policy-td-aliases-out.yaml"},
    		},
    		{
    			name:     "trust-domain-multiple-aliases",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local", "some-td"}),
    			input:    "simple-policy-multiple-td-aliases-in.yaml",
    			want:     []string{"simple-policy-multiple-td-aliases-out.yaml"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		discovery2.AddInstance(mock.MakeServiceInstance(mock.WorldService, port, 1, model.Locality{}))
    	}
    	registry1 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter1"),
    		DiscoveryController: discovery1,
    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter2"),
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{&mockMeshConfigHolder{}})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    --
    
    There are two, complementary, options to share artifacts between projects.
    The <<#sec:simple-sharing-artifacts-between-projects,simplified version>> is only suitable if what you need to share is a simple artifact that doesn't depend on the consumer.
    The simple solution is also limited to cases where this artifact is not published to a repository.
    This also implies that the consumer does not publish a dependency to this artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta_test.go

    	successCases := []map[string]string{
    		{"simple": "bar"},
    		{"now-with-dashes": "bar"},
    		{"1-starts-with-num": "bar"},
    		{"1234": "bar"},
    		{"simple/simple": "bar"},
    		{"now-with-dashes/simple": "bar"},
    		{"now-with-dashes/now-with-dashes": "bar"},
    		{"now.with.dots/simple": "bar"},
    		{"now-with.dashes-and.dots/simple": "bar"},
    		{"1-num.2-num/3-num": "bar"},
    		{"1234/5678": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            parse 'dependency-notations'
    
            then:
            hasDependency('simple') {
                withGAV('foo', 'bar', '1.0')
            }
            hasDependency('simple-with-rich1') {
                withGroup 'foo'
                withName 'bar'
                withVersion {
                    prefer '1.0'
                }
            }
            hasDependency('simple-with-rich2') {
                withGroup 'foo'
                withName 'bar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		},
    	}, func() (generated []test) {
    		// Generate test cases for all simple values (0 to 255) because the number of possible simple values is fixed and small.
    		for i := 0; i <= 255; i++ {
    			each := test{
    				name: fmt.Sprintf("simple value %d", i),
    			}
    			if i <= 23 {
    				each.in = []byte{byte(0xe0) | byte(i)}
    			} else {
    				// larger simple values encode to two bytes
    				each.in = []byte{byte(0xe0) | byte(24), byte(i)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util_test.go

    			want:    nil,
    		},
    		{
    			name:    "SIMPLE TLS and nil metadata",
    			tlsMode: networking.ClientTLSSettings_SIMPLE,
    			meta:    nil,
    			want:    alpnOverrideFalse,
    		},
    		{
    			name:    "MUTUAL TLS and nil metadata",
    			tlsMode: networking.ClientTLSSettings_SIMPLE,
    			meta:    nil,
    			want:    alpnOverrideFalse,
    		},
    		{
    			name:    "SIMPLE TLS and empty metadata",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/internal/coverage/defs.go

    // program unit for which we want to gather coverage info. Coverable
    // units are either "simple" or "intraline"; a "simple" coverable unit
    // corresponds to a basic block (region of straight-line code with no
    // jumps or control transfers). An "intraline" unit corresponds to a
    // logical clause nested within some other simple unit. A simple unit
    // will have a zero Parent value; for an intraline unit NxStmts will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

    import java.util.function.Supplier;
    import java.util.regex.Pattern;
    
    class DefaultRepositoryContentDescriptor implements RepositoryContentDescriptorInternal {
        private enum MatcherKind {
            SIMPLE,
            REGEX,
            SUB_GROUP,
        }
    
        private Set<String> includedConfigurations;
        private Set<String> excludedConfigurations;
        private Set<ContentSpec> includeSpecs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

        }
    
        protected TypeOf() {
            this.type = captureTypeArgument();
        }
    
        /**
         * Queries whether this object represents a simple (non-composite) type, not an array and not a generic type.
         *
         * @return true if this object represents a simple type.
         */
        public boolean isSimple() {
            return type.isClass()
                && !rawClass().isArray();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top