Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 461 for wildCards (0.28 sec)

  1. guava/src/com/google/common/reflect/TypeToken.java

       *       class. For example: {@code List<Integer>[] => List[]}.
       *   <li>If {@code T} is a type variable or a wildcard type, the raw type of the first upper bound
       *       is returned. For example: {@code <X extends Foo> => Foo}.
       * </ul>
       */
      public final Class<? super T> getRawType() {
        // For wildcard or type variable, the first bound determines the runtime type.
        Class<?> rawType = getRawTypes().iterator().next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

       *       class. For example: {@code List<Integer>[] => List[]}.
       *   <li>If {@code T} is a type variable or a wildcard type, the raw type of the first upper bound
       *       is returned. For example: {@code <X extends Foo> => Foo}.
       * </ul>
       */
      public final Class<? super T> getRawType() {
        // For wildcard or type variable, the first bound determines the runtime type.
        Class<?> rawType = getRawTypes().iterator().next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/OrderingTest.java

        // for use calling Collection.toArray later
        T[] emptyArray = Platform.newArray(strictlyOrderedElements, 0);
    
        // shoot me, but I didn't want to deal with wildcards through the whole test
        @SuppressWarnings("unchecked")
        Scenario<T> starter = new Scenario<>((Ordering<T>) ordering, list, emptyArray);
        verifyScenario(starter, 0);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build.go

    To eliminate ambiguity about which module versions are used in the build, the
    arguments must satisfy the following constraints:
    
    - Arguments must be package paths or package patterns (with "..." wildcards).
    They must not be standard packages (like fmt), meta-patterns (std, cmd,
    all), or relative or absolute file paths.
    
    - All arguments must have the same version suffix. Different queries are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    - "cmd" expands to the Go repository's commands and their
    internal libraries.
    
    Import paths beginning with "cmd/" only match source code in
    the Go repository.
    
    An import path is a pattern if it includes one or more "..." wildcards,
    each of which can match any string, including the empty string and
    strings containing slashes. Such a pattern expands to all package
    directories found in the GOPATH trees with names matching the
    patterns.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

         *
         * @param wildcard
         *            a wildcard expression
         * @throws SmbException
         * @return An array of <code>SmbResource</code> objects representing file
         *         and directories, workgroups, servers, or shares depending on the context
         *         of the resource URL
         */
        public SmbFile[] listFiles ( String wildcard ) throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. src/cmd/go/internal/modget/get.go

    		})
    	}
    }
    
    // performWildcardQueries populates the candidates for each query whose pattern
    // is a wildcard.
    //
    // The candidates for a given module path matching (or containing a package
    // matching) a wildcard query depend only on the initial build list, but the set
    // of modules may be expanded by other queries, so wildcard queries need to be
    // re-evaluated whenever a potentially-matching module path is added to the
    // build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. releasenotes/notes/double-wildcard.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issues:
    - 25350
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 15:48:36 UTC 2020
    - 219 bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcs/vcs.go

    			rr = rr1
    			err = nil
    		}
    	}
    
    	// Should have been taken care of above, but make sure.
    	if err == nil && strings.Contains(importPath, "...") && strings.Contains(rr.Root, "...") {
    		// Do not allow wildcards in the repo root.
    		rr = nil
    		err = importErrorf(importPath, "cannot expand ... in %q", importPath)
    	}
    	return rr, err
    }
    
    var errUnknownSite = errors.New("dynamic lookup required to find mapping")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/wildcard-tls-gateway.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: wildcard-tls-gateway
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: foo-https
        protocol: HTTPS
        port: 443
        hostname: foo.example.com
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: foo-example-com-cert
      - name: wildcard-https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 576 bytes
    - Viewed (0)
Back to top