Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,430 for returns2 (0.17 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    }
    
    // interestingToCompare returns TRUE if we want to compare results
    // for function 'fname'.
    func interestingToCompare(fname string) bool {
    	if strings.HasPrefix(fname, "init.") {
    		return true
    	}
    	if strings.HasPrefix(fname, "T_") {
    		return true
    	}
    	f := strings.Split(fname, ".")
    	if len(f) == 2 && strings.HasPrefix(f[1], "T_") {
    		return true
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/stmt0.go

    			continue
    		}
    	}
    }
    
    func returns0() {
    	return
    	return 0 /* ERROR "too many return values" */
    }
    
    func returns1(x float64) (int, *float64) {
    	return 0, &x
    	return /* ERROR "not enough return values" */
    	return "foo" /* ERRORx `cannot .* in return statement` */, x /* ERRORx `cannot use .* in return statement` */
    	return 0, &x, 1 /* ERROR "too many return values" */
    }
    
    func returns2() (a, b int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. test/return.go

    func _() int {
    	return 2
    	print(3)
    } // ERROR "missing return"
    
    func _() int {
    L:
    	goto L
    	print(3)
    } // ERROR "missing return"
    
    func _() int {
    	panic(2)
    	print(3)
    } // ERROR "missing return"
    
    func _() int {
    	{
    		return 2
    		print(3)
    	}
    } // ERROR "missing return"
    
    func _() int {
    L:
    	{
    		goto L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    // %output#0 corresponds to %k returned from "/DEVICE:0"
    // %output#1 corresponds to %k returned from "/DEVICE:1"
    // %output#2 corresponds to %l returned from "/DEVICE:2"
    // %output#3 corresponds to %l returned from "/DEVICE:3"
    // %output#4, %output#5 corresponds to %m and will be returned from "/DEVICE:4"
    // %output#6, %output#7 corresponds to %n and will have no device set
    ```
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Table.java

       *
       * @return set of column keys
       */
      Set<C> columnKeySet();
    
      /**
       * Returns a collection of all values, which may contain duplicates. Changes to the returned
       * collection will update the underlying table, and vice versa.
       *
       * @return collection of values
       */
      Collection<V> values();
    
      /**
       * Returns a view that associates each row key with the corresponding map from column keys to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Ordering.java

        return new CompoundOrdering<>(this, checkNotNull(secondaryComparator));
      }
    
      /**
       * Returns an ordering which tries each given comparator in order until a non-zero result is
       * found, returning that result, and returning zero only if all comparators return zero. The
       * returned ordering is based on the state of the {@code comparators} iterable at the time it was
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterables.java

          Iterable<T> removeFrom, Predicate<? super T> predicate) {
        if (removeFrom instanceof Collection) {
          return ((Collection<T>) removeFrom).removeIf(predicate);
        }
        return Iterators.removeIf(removeFrom.iterator(), predicate);
      }
    
      /** Removes and returns the first matching element, or returns {@code null} if there is none. */
      @CheckForNull
      static <T extends @Nullable Object> T removeFirstMatching(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/language.go

    func (r Region) IsGroup() bool {
    	return r.regionID.IsGroup()
    }
    
    // Contains returns whether Region c is contained by Region r. It returns true
    // if c == r.
    func (r Region) Contains(c Region) bool {
    	return r.regionID.Contains(c.regionID)
    }
    
    // TLD returns the country code top-level domain (ccTLD). UK is returned for GB.
    // In all other cases it returns either the region itself or an error.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RangeSet.java

      // Views
    
      /**
       * Returns a view of the {@linkplain Range#isConnected disconnected} ranges that make up this
       * range set. The returned set may be empty. The iterators returned by its {@link
       * Iterable#iterator} method return the ranges in increasing order of lower bound (equivalently,
       * of upper bound).
       */
      Set<Range<C>> asRanges();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/path/filepath/path.go

    	// Therefore, if one of err and err1 isn't nil, walk will return.
    	if err != nil || err1 != nil {
    		// The caller's behavior is controlled by the return value, which is decided
    		// by walkFn. walkFn may ignore err and return nil.
    		// If walkFn returns SkipDir or SkipAll, it will be handled by the caller.
    		// So walk should return whatever walkFn returns.
    		return err1
    	}
    
    	for _, name := range names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top