Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 155 for getHits (0.21 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                            for (SourceSet sourceSet : project.getExtensions().getByType(JavaPluginExtension.class).getSourceSets()) {
                                result.addAll(sourceSet.getOutput().getDirs().getFiles());
                            }
                            return result;
                        }
                    });
    
                    task.configure(new Action<GenerateEclipseClasspath>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. hack/apidiff.sh

    EOF
      exit 1
    }
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    base=
    target=
    while getopts "r:t:" o; do
        case "${o}" in
            r)
                base="${OPTARG}"
                if [ ! "$base" ]; then
                    echo "ERROR: -${o} needs a non-empty parameter" >&2
                    echo >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. fastapi/dependencies/utils.py

        errors = []
        for field in required_params:
            if is_scalar_sequence_field(field) and isinstance(
                received_params, (QueryParams, Headers)
            ):
                value = received_params.getlist(field.alias) or field.default
            else:
                value = received_params.get(field.alias)
            field_info = field.field_info
            assert isinstance(
                field_info, params.Param
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

                if (embeddedFileNames != null) {
                    processEmbeddedDocNames(embeddedFileNames, writer);
                } else {
                    final List<PDNameTreeNode<PDComplexFileSpecification>> kids = efTree.getKids();
                    if (kids == null) {
                        return;
                    }
                    for (final PDNameTreeNode<PDComplexFileSpecification> node : kids) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

            @Override
            public List<FileCollection> call() throws Exception {
                List<FileCollection> runtimeFiles = new ArrayList<>();
                for (NativeDependencySet nativeDependencySet : binary.getLibs()) {
                    runtimeFiles.add(getFiles(nativeDependencySet));
                }
                return runtimeFiles;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractPropertyLanguageInterOpIntegrationTest.groovy

                            t.getFlag().set(false);
                            t.getMessage().set("some other value");
                            t.getNumber().set(1.23);
                            t.getList().set(Arrays.asList(1, 2));
                            t.getSet().set(Arrays.asList(1, 2));
                            Map<Integer, Boolean> map = new LinkedHashMap<>();
                            map.put(1, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			key := watchKey + "/foo"
    			if !recursive {
    				watchKey = key
    			}
    
    			// Get the current RV from which we can start watching.
    			out := &example.PodList{}
    			if err := store.GetList(ctx, watchKey, storage.ListOptions{ResourceVersion: "", Predicate: tt.pred, Recursive: recursive}, out); err != nil {
    				t.Fatalf("List failed: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. hack/verify-golangci-lint.sh

    kube::util::require-jq
    
    invocation=(./hack/verify-golangci-lint.sh "$@")
    golangci=("${GOBIN}/golangci-lint" run)
    golangci_config="${KUBE_ROOT}/hack/golangci.yaml"
    base=
    strict=
    hints=
    githubactions=
    while getopts "ar:sng:c:" o; do
      case "${o}" in
        a)
          base="$(git merge-base origin/master HEAD)"
          ;;
        r)
          base="${OPTARG}"
          if [ ! "$base" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InterfaceBackedManagedTypeIntegrationTest.groovy

        }
    
        def "two views of the same element are equal"() {
            when:
            buildScript '''
                @Managed
                interface Address {
                    String getCity()
                    void setCity(String name)
                }
    
                @Managed
                interface Person {
                    String getName()
                    void setName(String name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// match 'opts.ResourceVersion' according 'opts.ResourceVersionMatch'.
    	Get(ctx context.Context, key string, opts GetOptions, objPtr runtime.Object) error
    
    	// GetList unmarshalls objects found at key into a *List api object (an object
    	// that satisfies runtime.IsList definition).
    	// If 'opts.Recursive' is false, 'key' is used as an exact match. If `opts.Recursive'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top