Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Classes (0.3 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Draws samples from a categorical distribution.";
    
      let description = [{
    The generated values will have a categorical distribution based on the `logits`
    or unnormalized log-probabilities provided for all classes.
      }];
    
      let arguments = (ins
        TFL_FpTensor:$logits,
        TFL_I32Tensor:$num_samples,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed2
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. src/net/http/server.go

    //
    // Normally a wildcard matches only a single path segment,
    // ending at the next literal slash (not %2F) in the request URL.
    // But if the "..." is present, then the wildcard matches the remainder of the URL path, including slashes.
    // (Therefore it is invalid for a "..." wildcard to appear anywhere but at the end of a pattern.)
    // The match for a wildcard can be obtained by calling [Request.PathValue] with the wildcard's name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		return nil
    	}
    
    	// Note that we use path, not path/filepath even though a domain socket path is a file path.  We don't want the
    	// Pilot output to depend on which OS Pilot is run on, so we always use Unix-style forward slashes.
    	if !path.IsAbs(addr) || strings.HasSuffix(addr, "/") {
    		return fmt.Errorf("%s is not an absolute path to a file", addr)
    	}
    	return nil
    }
    
    // ValidateGateway checks gateway specifications
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    		}
    		if time.Until(deadline) < pollDuration {
    			return false
    		}
    		time.Sleep(pollDuration)
    	}
    }
    
    // waitForFree checks db.numFreeConns until either it equals want or
    // the maxWait time elapses.
    func waitForFree(t *testing.T, db *DB, want int) {
    	var numFree int
    	if !waitCondition(t, func() bool {
    		numFree = db.numFreeConns()
    		return numFree == want
    	}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Map} instances (including instances of {@link
     * SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts {@link Lists}, {@link Sets}
     * and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#maps">{@code Maps}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Map} instances (including instances of {@link
     * SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts {@link Lists}, {@link Sets}
     * and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#maps">{@code Maps}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		// relative to the current path
    		{"foobar.com/baz", "/qux/foobar.com/baz"},
    		// relative to the current path (+ going upwards)
    		{"../quux/foobar.com/baz", "/quux/foobar.com/baz"},
    		// incorrect number of slashes
    		{"///foobar.com/baz", "/foobar.com/baz"},
    
    		// Verifies we don't path.Clean() on the wrong parts in redirects:
    		{"/foo?next=http://bar.com/", "/foo?next=http://bar.com/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top