Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for getHits (0.35 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                DistributionManagement source,
                boolean sourceDominant,
                Map<Object, Object> context) {
            Site src = source.getSite();
            if (src != null) {
                Site tgt = target.getSite();
                if (tgt == null) {
                    tgt = Site.newBuilder(false).build();
                }
                Site.Builder sbuilder = Site.newBuilder(tgt);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    		t.Fatalf("Failed to initialize cacher: %v", err)
    	}
    	ctx := context.Background()
    	terminate := func() {
    		cacher.Stop()
    		server.Terminate(t)
    	}
    
    	// Since some tests depend on the fact that GetList shouldn't fail,
    	// we wait until the error from the underlying storage is consumed.
    	if err := wait.PollInfinite(100*time.Millisecond, wrappedStorage.ErrorsConsumed); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	_, watchErr := store.Watch(ctx, invalidKey, storage.ListOptions{})
    	expectInvalidKey("Watch", watchErr)
    	expectInvalidKey("Get", store.Get(ctx, invalidKey, storage.GetOptions{}, nil))
    	expectInvalidKey("GetList", store.GetList(ctx, invalidKey, storage.ListOptions{}, nil))
    	expectInvalidKey("GuaranteedUpdate", store.GuaranteedUpdate(ctx, invalidKey, nil, true, nil, nil, nil))
    	_, countErr := store.Count(invalidKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          is_scalar_rhs = true;
        } else if (constant_val_type.getRank() > 1) {
          return failure();
        }
    
        Value filter = fc_op.getFilter();
        Value bias = fc_op.getBias();
        ElementsAttr bias_value;
        const bool is_none_bias = mlir::isa<NoneType>(bias.getType());
        if (fc_op.getFusedActivationFunction() != "NONE") return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    			withRev = int64(parsedRV)
    		}
    	default:
    		return withRev, fmt.Errorf("unknown ResourceVersionMatch value: %v", opts.ResourceVersionMatch)
    	}
    	return withRev, nil
    }
    
    // GetList implements storage.Interface.
    func (s *store) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	preparedKey, err := s.prepareKey(key)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.nativeplatform.tasks.InstallExecutable.getLibs()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (InstallExecutable.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    }
    
    // GetList implements storage.Interface
    func (c *Cacher) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	recursive := opts.Recursive
    	resourceVersion := opts.ResourceVersion
    	pred := opts.Predicate
    	if shouldDelegateList(opts) {
    		return c.storage.GetList(ctx, key, opts, listObj)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top