Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 91 for gretty (0.17 sec)

  1. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    		<repository name="ivyrep" url="http://www.jayasoft.fr/org/ivyrep/" pattern="[organisation]/[module]/ivy-[revision].xml" ivys="true" artifacts="false"/>
    
    		<description homepage="http://www.my.org/mymodule/">
    	This module is <b>great</b> !<br/>
    	You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.
    		</description>
    
    		<e:someExtra>56576</e:someExtra>
    	</info>
    	<configurations>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    =================
    
    Thank you so much for wanting to contribute to Guava! Here are a few important
    things you should know about contributing:
    
    1.  API changes require discussion, use cases, etc. Code comes later.
    2.  Pull requests are great for small fixes for bugs, documentation, etc.
    3.  Pull requests are not merged directly into the master branch.
    4.  Code contributions require signing a Google CLA.
    
    API changes
    -----------
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultVariantTransformRegistry.java

                to = immutableAttributesFactory.mutable();
            }
    
            public AttributeContainer getFrom() {
                return from;
            }
    
            public AttributeContainer getTo() {
                return to;
            }
        }
    
        @NonExtensible
        public static class TypedRegistration<T extends TransformParameters> extends RecordingRegistration implements TransformSpec<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    TIP: To permanently enable verbose mode, add `org.gradle.console=verbose` to your `gradle.properties` file.
    
    == Build caching
    
    Incremental Builds are a great optimization that helps avoid work already done.
    If a developer continuously changes a single file, there is likely no need to rebuild all the other files in the project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // traversed field paths. It is necessary to build the tree to take advantage of
    // DeepEqual checks performed by lower levels of the object during validation without
    // greatly modifying `kube-openapi`'s implementation.
    //
    // The tree, and all cache storage/scratch space for the validation of a single
    // call to `Validate` is thrown away at the end of the top-level call
    // to `Validate`.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    The files are rebuilt, even though the developer is building something that has been built before.
    
    This is where a Build Cache is helpful. The cache stores previous build results, and greatly reduces the need to rebuild things when they have already been built locally.
    
    Let's start by turning on the local Build Cache for your app.
    
    == Step 2. Enabling the Local Build Cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/cache2/RelayTest.kt

    @Tag("Slowish")
    class RelayTest {
      @TempDir
      var tempDir: File? = null
      private val executor = Executors.newCachedThreadPool(threadFactory("RelayTest"))
      private val metadata: ByteString = "great metadata!".encodeUtf8()
      private lateinit var file: File
    
      @BeforeEach
      fun setUp() {
        file = File(tempDir, "test")
      }
    
      @AfterEach
      fun tearDown() {
        executor.shutdown()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Release candidates are supported for as long as the release window is open, but they are not intended to be used for production.
    Bug reports are greatly appreciated during the RC phase.
    
    The Gradle team may create additional patch releases to replace the final release due to critical bug fixes or regressions.
    For instance, Gradle 5.2.1 replaces the Gradle 5.2 release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        entries.
        TODO(silvasean): This design should be reconsidered after
        SavedModel/tf.Module and MLIR linkage semantics are better solidified.
        In particular, it would be great if we could assume a single exported name,
        and use the standardized MLIR `sym_name` attribute to hold it.
    
        This dialect annotates func ops with two argument attributes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. src/regexp/backtrack.go

    				// inst.Arg is the match.
    				b.push(re, inst.Arg, pos, false)
    				pc = inst.Arg
    				pos = b.end
    				goto CheckAndLoop
    			}
    			// inst.Out is the match - non-greedy
    			b.push(re, inst.Out, b.end, false)
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstRune:
    			r, width := i.step(pos)
    			if !inst.MatchRune(r) {
    				continue
    			}
    			pos += width
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top