Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for wildcards (0.17 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/ManagedModelMapTypesTest.groovy

            then:
            def e = thrown InvalidManagedModelElementTypeException
            e.message.startsWith("""Type $ModelMap.name<?> is not a valid model element type:
    - type parameter of $ModelMap.name cannot be a wildcard.""")
        }
    
        def "can have map of map"() {
            def type = ModelTypes.modelMap(ModelTypes.modelMap(NamedThingInterface))
    
            expect:
            schemaStore.getSchema(type) instanceof ModelMapSchema
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

      namespace: default
    spec:
      http:
      - route:
        - destination:
            host: reviews.eu.bookinfo.com # This should match the eu-wildcard service entry and not generate an error
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews-bookinfo-eu-wildcard
      namespace: default
    spec:
      http:
      - route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/events.go

    	WildCardEvent = framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.All, Label: "WildCardEvent"}
    	// UnschedulableTimeout is the event when a pod stays in unschedulable for longer than timeout.
    	UnschedulableTimeout = framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.All, Label: "UnschedulableTimeout"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-diff.go

    	verbose bool
    	// selectResources constrains the list of resources to compare to only the ones in this list, ignoring all others.
    	// The format of each list item is :: and the items are comma separated. The * character represents wildcard selection.
    	// e.g.
    	// Deployment:istio-system:* - compare all deployments in istio-system namespace
    	// Service:*:istio-pilot - compare Services called "istio-pilot" in all namespaces.
    	selectResources string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelMapStrategy.java

                    return;
                }
    
                if (type.isHasWildcardTypeVariables()) {
                    extractionContext.add(String.format("type parameter of %s cannot be a wildcard.", ModelMap.class.getName()));
                    return;
                }
    
                List<ModelType<?>> typeVariables = type.getTypeVariables();
                if (typeVariables.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/vendor.go

    					mod = module.Version{Path: f[1], Version: f[2]}
    					f = f[3:]
    				} else if f[2] == "=>" {
    					// A wildcard replacement found in the main module's go.mod file.
    					mod = module.Version{Path: f[1]}
    					f = f[2:]
    				} else {
    					// Not a version or a wildcard replacement.
    					// We don't know how to interpret this module line, so ignore it.
    					mod = module.Version{}
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/net/sockaddr_posix.go

    type sockaddr interface {
    	Addr
    
    	// family returns the platform-dependent address family
    	// identifier.
    	family() int
    
    	// isWildcard reports whether the address is a wildcard
    	// address.
    	isWildcard() bool
    
    	// sockaddr returns the address converted into a syscall
    	// sockaddr type that implements syscall.Sockaddr
    	// interface. It returns a nil interface when the address is
    	// nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/matcher/metadata_test.go

    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		}
    	}
    
    	testCases := []struct {
    		name string
    		want string
    	}{
    		{
    			name: "wildcard",
    			want: ".+",
    		},
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			want := getWant(tc.want)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/instances.go

    	return newOption("localhost", value)
    }
    
    func AdditionalLocalhost(value LocalhostValue) Instance {
    	return newOption("additional_localhost", value)
    }
    
    func Wildcard(value WildcardValue) Instance {
    	return newOption("wildcard", value)
    }
    
    func AdditionalWildCard(value WildcardValue) Instance {
    	return newOption("additional_wildcard", value)
    }
    
    func DualStack(value bool) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/lif/address.go

    // Addrs returns a list of interface addresses.
    //
    // The provided af must be an address family and name must be a data
    // link name. The zero value of af or name means a wildcard.
    func Addrs(af int, name string) ([]Addr, error) {
    	eps, err := newEndpoints(af)
    	if len(eps) == 0 {
    		return nil, err
    	}
    	defer func() {
    		for _, ep := range eps {
    			ep.close()
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top