Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for wildCards (0.16 sec)

  1. src/net/ipsock_plan9.go

    	}
    	return newFD(fd.net, name, listen, ctl, data, fd.laddr, raddr)
    }
    
    func isWildcard(a Addr) bool {
    	var wildcard bool
    	switch a := a.(type) {
    	case *TCPAddr:
    		wildcard = a.isWildcard()
    	case *UDPAddr:
    		wildcard = a.isWildcard()
    	case *IPAddr:
    		wildcard = a.isWildcard()
    	}
    	return wildcard
    }
    
    func toLocal(a Addr, net string) Addr {
    	switch a := a.(type) {
    	case *TCPAddr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ExcludeMetadata.java

    public interface ExcludeMetadata {
        /**
         * The coordinates of the module to be excluded.
         * A '*' value for group or name indicates a wildcard match.
         */
        ModuleIdentifier getModuleId();
    
        /**
         * The attributes of the artifact to be excluded. A '*' value for any attribute indicates a wildcard match.
         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTypeModelRuleExtractorTest.groovy

            "wildcardType"   | "Type '?' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)."                                 | "wildcard type parameter"
            "extendsType"    | "Type '? extends ${BinarySpec.getName()}' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)." | "extends type parameter"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifact.java

         * @param classifier The classifier.
         */
        void setClassifier(@Nullable String classifier);
    
        /**
         * A comma separated list of public configurations in which this artifact is published.
         * The '*' wildcard is used to designate that the artifact is published in all public configurations.
         * A <code>null</code> value (the default) indicates that this artifact will be published without a conf attribute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. releasenotes/notes/47290.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 47290
      - 47264
      - 31250
      - 33360
      - 30531
      - 38484
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 08:34:42 UTC 2023
    - 270 bytes
    - Viewed (0)
  6. internal/bucket/versioning/versioning.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package versioning
    
    import (
    	"encoding/xml"
    	"io"
    	"strings"
    
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    // State - enabled/disabled/suspended states
    // for multifactor and status of versioning.
    type State string
    
    // Various supported states
    const (
    	Enabled State = "Enabled"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

            then:
            factory.communicationAddresses.every {
                factory.isCommunicationAddress(it)
            }
    
            !factory.isCommunicationAddress(ip(127, 0, 0, 3))
        }
    
        def "wildcard address is always present"() {
    
            when:
            defaultAddresses()
    
            then:
            factory.wildcardBindingAddress == new InetSocketAddress(0).address
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-cert-cross-namespace.yaml

      gatewayClassName: acme-lb
      listeners:
      - name: https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: wildcard-example-com-cert
            namespace: gateway-api-example-ns2
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-ns1-gateways-to-ref-secrets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 778 bytes
    - Viewed (0)
  9. internal/bucket/replication/destination.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package replication
    
    import (
    	"encoding/xml"
    	"fmt"
    	"strings"
    
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    // DestinationARNPrefix - destination ARN prefix as per AWS S3 specification.
    const DestinationARNPrefix = "arn:aws:s3:::"
    
    // DestinationARNMinIOPrefix - destination ARN prefix for MinIO.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

                synchronized (lock) {
                    init();
                    return wildcardBindingAddress;
                }
            } catch (Exception e) {
                throw new RuntimeException("Could not determine a usable wildcard IP for this machine.", e);
            }
        }
    
        private void init() throws Exception {
            if (initialized) {
                return;
            }
    
            initialized = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top