Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 166 for wildcards (0.14 sec)

  1. 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)
  2. 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)
  3. pkg/test/framework/components/echo/port.go

    	ServerFirst bool
    
    	// InstanceIP determines if echo will listen on the instance IP; otherwise, it will listen on wildcard
    	InstanceIP bool
    
    	// LocalhostIP determines if echo will listen on the localhost IP; otherwise, it will listen on wildcard
    	LocalhostIP bool
    }
    
    // IsWorkloadOnly returns true if there is no service port specified for this Port.
    func (p Port) IsWorkloadOnly() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 18:10:05 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_extra.txt

    stdout '^example.net/a v0.1.0 '
    stdout '^example.net/b v0.1.0 '
    ! stdout '^example.net/c '
    
    
    # TODO(bcmills): This property does not yet hold for modules added for
    # missing packages when the newly-added module matches a wildcard.
    
    cp go.mod.orig go.mod
    
    go get -u example.net/a@v0.1.0 example.net/b/...@v0.1.0
    go list -m all
    stdout '^example.net/a v0.1.0 '
    stdout '^example.net/b v0.1.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_downgrade_missing.txt

    stderr '^go: example.net/pkgadded@v1.1.0 conflicts with example.net/pkgadded/subpkg/...@upgrade \(v1.2.0\)$'
    ! stderr 'matched no packages'
    cmp go.mod.orig go.mod
    
    
    # A wildcard pattern should match the pattern with that path.
    
    go get example.net/pkgadded/...@v1.0.0
    go list -m all
    stdout '^example.net/pkgadded v1.0.0'
    cp go.mod.orig go.mod
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K 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