Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 401 for degenerate (0.09 sec)

  1. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

      - type: textarea
        id: code-to-reproduce
        attributes:
          label: Standalone code to reproduce the issue
          description: Provide a reproducible test case that is the bare minimum necessary to generate the problem. Please share a link to Colab, Jupyter, or any notebook.
          placeholder: Tell us what you see!
          value:
          render: shell
        validations:
          required: true
      - type: textarea
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jun 28 18:25:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/TestUtil.java

      static final String ERROR_NODE_NOT_IN_GRAPH =
          "Should not be allowed to pass a node that is not an element of the graph.";
      static final String ERROR_ELEMENT_REMOVED = "used to generate this set";
      private static final String NODE_STRING = "Node";
      private static final String EDGE_STRING = "Edge";
    
      enum EdgeType {
        UNDIRECTED,
        DIRECTED;
      }
    
      private TestUtil() {}
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                            logger.debug("Interupted task.", e);
                        }
                    } catch (final Exception e) {
                        if (generating) {
                            logger.warn("Failed to generate thumbnail.", e);
                        }
                    }
                }
                if (!taskList.isEmpty()) {
                    storeQueue(taskList);
                }
            }, "ThumbnailGenerator");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isAvailableDatabaseDependency: (NotRequired - Default false)
        #   [true]
        #     Generate the method that depends on the database. e.g. cb.lockWithRR() at DB2.
        #
        #; isAvailableDatabaseDependency = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/path-operation-configuration.md

    ///
    
    /// check
    
    OpenAPI specifies that each *path operation* requires a response description.
    
    So, if you don't provide one, **FastAPI** will automatically generate one of "Successful response".
    
    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## Deprecate a *path operation*
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

    import java.util.Comparator;
    import java.util.List;
    
    import org.apache.commons.cli.Option;
    import org.junit.jupiter.api.Test;
    
    import static java.util.Objects.nonNull;
    
    /**
     * Pseudo test to generate documentation fragment about supported CLI options. TODO such documentation generation code
     * should not be necessary as unit test but should be run during site generation (Velocity? Doxia macro?)
     */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats

        cd /tf/tensorflow
        bazel version  # Start the bazel server
        # Without this, git errors if /tf/tensorflow directory owner is different
        git config --global --add safe.directory /tf/tensorflow
        # Note that you could generate a list of all the affected targets with e.g.:
        # bazel query $(paste -sd "+" $BATS_FILE_TMPDIR/changed_files) --keep_going
        # Only shows Added, Changed, Modified, Renamed, and Type-changed files
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. internal/config/identity/openid/openid.go

    		p.JWKS.URL, err = xnet.ParseHTTPURL(jwksURL)
    		if err != nil {
    			return c, err
    		}
    
    		if p.RolePolicy != "" {
    			// RolePolicy is validated by IAM System during its
    			// initialization.
    
    			// Generate role ARN as combination of provider domain and
    			// prefix of client ID.
    			domain := configURLDomain
    			if domain == "" {
    				// Attempt to parse the JWKs URI.
    				domain = p.JWKS.URL.Hostname()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 10 20:16:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/main/config/openapi/openapi-user.yaml

              schema:
                type: array
                items:
                  type: string
                example: [label]
            - name: field
              in: query
              description: Field name to generate suggest words
              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
                  type: string
                example: [python]
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/templates.md

    So, the section with:
    
    {% raw %}
    
    ```jinja
    <a href="{{ url_for('read_item', id=id) }}">
    ```
    
    {% endraw %}
    
    ...will generate a link to the same URL that would be handled by the *path operation function* `read_item(id=id)`.
    
    For example, with an ID of `42`, this would render:
    
    ```html
    <a href="/items/42">
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top