Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for getPost (0.13 sec)

  1. pilot/pkg/networking/core/route/route.go

    		h = host.Name(service.Attributes.K8sAttributes.ExternalName)
    	}
    	port := listenerPort
    	if destination.GetPort() != nil {
    		port = int(destination.GetPort().GetNumber())
    	} else if service != nil && len(service.Ports) == 1 {
    		// if service only has one port defined, use that as the port, otherwise use default listenerPort
    		port = service.Ports[0].Port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

            this.isExists = false;
    
            try {
                if ( this.url.getHost().length() == 0 ) {}
                else if ( this.fileLocator.getShare() == null ) {
                    if ( this.fileLocator.getType() == TYPE_WORKGROUP ) {
                        getContext().getNameServiceClient().getByName(this.url.getHost(), true);
                    }
                    else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			}
    			err := store.GetList(ctx, tt.prefix, storageOpts, out)
    			if tt.expectRVTooLarge {
    				if err == nil || !apierrors.IsTimeout(err) || !storage.IsTooLargeResourceVersion(err) {
    					t.Fatalf("expecting resource version too high error, but get: %s", err)
    				}
    				return
    			}
    
    			if err != nil {
    				if !tt.expectError {
    					t.Fatalf("GetList failed: %v", err)
    				}
    				return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	backingStorage.injectError(errDummy)
    	err = cacher.GetList(context.TODO(), "pods/ns", storage.ListOptions{
    		ResourceVersion: "0",
    		Predicate:       pred,
    	}, result)
    	if err != nil {
    		t.Errorf("GetList with Limit and RV=0 should be served from cache: %v", err)
    	}
    
    	err = cacher.GetList(context.TODO(), "pods/ns", storage.ListOptions{
    		ResourceVersion: "",
    		Predicate:       pred,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

      public void testGetLast_basic() {
        List<String> list = newArrayList();
        list.add("a");
        list.add("b");
        assertEquals("b", getLast(list.iterator()));
      }
    
      public void testGetLast_exception() {
        List<String> list = newArrayList();
        try {
          getLast(list.iterator());
          fail();
        } catch (NoSuchElementException expected) {
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/collect/Iterators.java

       * @return the last element of {@code iterator}
       * @since 3.0
       */
      @ParametricNullness
      public static <T extends @Nullable Object> T getLast(
          Iterator<? extends T> iterator, @ParametricNullness T defaultValue) {
        return iterator.hasNext() ? getLast(iterator) : defaultValue;
      }
    
      /**
       * Calls {@code next()} on {@code iterator}, either {@code numberToAdvance} times or until {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Iterators.java

       * @return the last element of {@code iterator}
       * @since 3.0
       */
      @ParametricNullness
      public static <T extends @Nullable Object> T getLast(
          Iterator<? extends T> iterator, @ParametricNullness T defaultValue) {
        return iterator.hasNext() ? getLast(iterator) : defaultValue;
      }
    
      /**
       * Calls {@code next()} on {@code iterator}, either {@code numberToAdvance} times or until {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
    
            @Override
            public FacetInfo getFacetInfo() {
                return createFacetInfo(request);
            }
    
            @Override
            public String getSort() {
                return request.getParameter("sort");
            }
    
            @Override
            public int getStartPosition() {
                if (startPosition != -1) {
                    return startPosition;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top