Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,637 for cheese (0.11 sec)

  1. tests/fuzz/README.md

    These should be written alongside standard test packages.
    Currently, these cannot be in `<pkg>_test` packages; instead move them to a file under `<pkg>`.
    
    Fuzz jobs will be run in unit test mode automatically (i.e. run once) and as part of OSS-fuzz.
    
    ## Local testing
    
    To run the fuzzers, follow these steps:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 16:45:44 UTC 2022
    - 994 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/layout.go

    	// the depth-first topology sorting algorithm.
    	var zerodegree []ID
    	// LIFO queue. Track the successor blocks of the scheduled block so that when we
    	// encounter loops, we choose to schedule the successor block of the most recently
    	// scheduled block.
    	var succs []ID
    	exit := f.newSparseSet(f.NumBlocks()) // exit blocks
    	defer f.retSparseSet(exit)
    
    	// Populate idToBlock and find exit blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * (if applicable). This process will essentially remove duplicate repositories by merging them into one equivalent
         * repository. It is worth to point out that merging does not simply choose one of the input repositories and
         * discards the others but actually combines their possibly different policies.
         *
         * @param repositories The original repositories, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. releasenotes/README.md

    ## docs
    
    The `docs` field should be used to list related documentation. These will be turned into links and appended to the note alongside the issues. Quotes are **required** for docs entries or you may see YAML errors such as `did not find expected alphabetic or numeric character`.
    
    ### Release Notes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    When prompted, select the `${componentTypeIndex.raw}: ${componentType.raw}` project type and `${languageIndex.raw}: ${language.raw}` as implementation language.
    Next you can choose the DSL for writing buildscripts -  `1  : Groovy` or `2: Kotlin`.
    For the other questions, press enter to use the default values.
    
    The output will look like this:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. .editorconfig

    # EditorConfig helps developers define and maintain consistent
    # coding styles between different editors and IDEs
    # editorconfig.org
    
    root = true
    
    [*]
    # Change these settings to your own preference
    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
  7. test/fixedbugs/issue11326.go

    	// binary exponent, so these constants cannot be represented anymore
    	// internally. However, the language spec does not preclude other
    	// implementations from handling these. Don't check the error.
    	// var _ = 1e2147483647 // "constant too large"
    	// var _ = 1e646456993  // "constant too large"
    
    	// Any implementation must be able to handle these constants at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

                        "Both dependency locking and fail on dynamic versions are enabled. You must choose between the two modes."
                    );
                } else if (resolutionStrategy.isFailingOnChangingVersions()) {
                    throw new InvalidUserCodeException(
                        "Both dependency locking and fail on changing versions are enabled. You must choose between the two modes."
                    );
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

          if (nextThrewException) {
            throw new IllegalStateException();
          }
          iterator.remove();
        }
      }
    
      public void testCanCatchSunJavaBug6529795InTargetIterator() {
        try {
          /* Choose 4 steps to get sequence [next, next, next, remove] */
          new IteratorTester<Integer>(
              4, MODIFIABLE, newArrayList(1, 2), IteratorTester.KnownOrder.KNOWN_ORDER) {
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_util.h

    // CPU and also operations placed on the GPU will be compiled into a GPU
    // executable.
    //
    // Returns a non-OK Status if no unambiguous choice of device exists.
    //
    // We choose the device using the following rules:
    //
    //  - It is an error for `device_names` to contain more than one device of the
    //    same type.
    //  - GPU is preferred over CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top