Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 449 for returns_ (0.56 sec)

  1. guava/src/com/google/common/collect/Multimaps.java

       * multimap, either directly or through the multimap's views, result in an {@code
       * UnsupportedOperationException}.
       *
       * <p>The returned multimap will be serializable if the specified multimap is serializable.
       *
       * @param delegate the multimap for which an unmodifiable view is to be returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

       * multimap, either directly or through the multimap's views, result in an {@code
       * UnsupportedOperationException}.
       *
       * <p>The returned multimap will be serializable if the specified multimap is serializable.
       *
       * @param delegate the multimap for which an unmodifiable view is to be returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    			return true
    		}
    
    		ps := mappedPolicy.toSlice()
    		sort.Strings(ps)
    		r = append(r, madmin.GroupPolicyEntities{
    			Group:    group,
    			Policies: ps,
    		})
    		return true
    	})
    
    	sort.Slice(r, func(i, j int) bool {
    		return r[i].Group < r[j].Group
    	})
    
    	return r
    }
    
    // Assumes store is locked by caller. If policies is empty, returns all policy mappings.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeToken.java

      }
    
      /** Returns an instance of type token that wraps {@code type}. */
      public static <T> TypeToken<T> of(Class<T> type) {
        return new SimpleTypeToken<>(type);
      }
    
      /** Returns an instance of type token that wraps {@code type}. */
      public static TypeToken<?> of(Type type) {
        return new SimpleTypeToken<>(type);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    		cause = check.sprintf(format, args...)
    	})
    	return cause
    }
    
    // kindString returns the type kind as a string.
    func (check *Checker) kindString(typ Type) string {
    	switch under(typ).(type) {
    	case *Array:
    		return "array"
    	case *Slice:
    		return "slice"
    	case *Struct:
    		return "struct"
    	case *Pointer:
    		return "pointer"
    	case *Signature:
    		return "func"
    	case *Interface:
    		if isTypeParam(typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

            return false;
          }
        }
        return false;
      }
    
      /**
       * Returns an unmodifiable view of the specified navigable set. This method allows modules to
       * provide users with "read-only" access to internal navigable sets. Query operations on the
       * returned set "read through" to the specified set, and attempts to modify the returned set,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    		}
    
    		buf := make([]byte, 1024)
    		n, err := c.Read(buf)
    		if err != nil {
    			t.Errorf("Server read returned error: %s", err)
    			return
    		}
    		c.Close()
    		bufChan <- buf[:n]
    	}()
    
    	Server(s, testConfig).Handshake()
    	buf := <-bufChan
    
    	if len(buf) < 5+4 {
    		t.Fatalf("Server returned short message of length %d", len(buf))
    	}
    	// buf contains a TLS record, with a 5 byte record header and a 4 byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

            return false;
          }
        }
        return false;
      }
    
      /**
       * Returns an unmodifiable view of the specified navigable set. This method allows modules to
       * provide users with "read-only" access to internal navigable sets. Query operations on the
       * returned set "read through" to the specified set, and attempts to modify the returned set,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      builder.create<mlir::tf_device::ReturnOp>(loc_op->getLoc(),
                                                return_value_from_host);
      return launch_op;
    }
    
    // Returns true if `op` has non-static shaped outputs.
    bool HasDynamicOutputs(Operation* op) {
      for (Value v : op->getResults()) {
        if (mlir::TF::CanBeRefined(v.getType())) return true;
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

      public static ListenableFuture<@Nullable Void> immediateVoidFuture() {
        return (ListenableFuture<@Nullable Void>) ImmediateFuture.NULL;
      }
    
      /**
       * Returns a {@code ListenableFuture} which has an exception set immediately upon construction.
       *
       * <p>The returned {@code Future} can't be cancelled, and its {@code isDone()} method always
       * returns {@code true}. Calling {@code get()} will immediately throw the provided {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top